FloatingActionButtonAlignOffsetBuilder
Methods
Horizontal(System.String)
Specifies the horizontal offset of the FloatingActionButton.
Parameters
value - System.String
The value that configures the horizontal offset.
Example
@(Html.Kendo().FloatingActionButton()
.Name("fab")
.AlignOffset(ao => ao.Horizontal("50px"))
)
Horizontal(System.Int32)
Specifies the horizontal offset of the FloatingActionButton.
Parameters
value - System.Int32
The value that configures the horizontal offset.
Example
@(Html.Kendo().FloatingActionButton()
.Name("fab")
.AlignOffset(ao => ao.Horizontal(50))
)
Vertical(System.String)
Specifies the vertical offset of the FloatingActionButton.
Parameters
value - System.String
The value that configures the vertical offset.
Example
@(Html.Kendo().FloatingActionButton()
.Name("fab")
.AlignOffset(ao => ao.Vertical("50px"))
)
Vertical(System.Int32)
Specifies the vertical offset of the FloatingActionButton.
Parameters
value - System.Int32
The value that configures the vertical offset.
Example
@(Html.Kendo().FloatingActionButton()
.Name("fab")
.AlignOffset(ao => ao.Vertical(50))
)