New to Telerik UI for ASP.NET MVC? Download free 30-day trial

FloatingActionButtonAlignOffsetBuilder

Methods

Horizontal(System.String)

Defines the component's horizontal offset.

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)

Defines the component's horizontal offset.

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)

Defines the component's vertical offset.

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)

Defines the component's vertical offset.

Parameters

value - System.Int32

The value that configures the vertical offset.

Example


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

In this article
Not finding the help you need?