FloatingActionButtonAlignOffsetBuilder

Methods

Horizontal(System.String)

Defines the component's horizontal offset.

Parameters

value - System.String

The value that configures the horizontal offset.

Example

Razor
 
            @(Html.Kendo().FloatingActionButton()
                   .Name("fab")
                   .AlignOffset(ao => ao.Horizontal("50px"))
            )
             

Horizontal(System.Int32)

Defines the component's horizontal offset.

Parameters

value - System.Int32

The value that configures the horizontal offset.

Example

Razor
 
            @(Html.Kendo().FloatingActionButton()
                   .Name("fab")
                   .AlignOffset(ao => ao.Horizontal(50))
            )
             

Vertical(System.String)

Defines the component's vertical offset.

Parameters

value - System.String

The value that configures the vertical offset.

Example

Razor
 
            @(Html.Kendo().FloatingActionButton()
                   .Name("fab")
                   .AlignOffset(ao => ao.Vertical("50px"))
            )
             

Vertical(System.Int32)

Defines the component's vertical offset.

Parameters

value - System.Int32

The value that configures the vertical offset.

Example

Razor
 
            @(Html.Kendo().FloatingActionButton()
                   .Name("fab")
                   .AlignOffset(ao => ao.Vertical(50))
            )