SortableCursorOffsetSettingsBuilder
Methods
Left(System.Double)
The left offset of the hint element relative to the mouse cursor/finger.
Parameters
value - System.Double
The value for Left
RETURNS
Returns the current SortableCursorOffsetSettingsBuilder instance.
Example
Razor
@(Html.Kendo().Sortable()
.For("#element")
.CursorOffset(co => co.Left(12))
)
Top(System.Double)
The top offset of the hint element relative to the mouse cursor/finger.
Parameters
value - System.Double
The value for Top
RETURNS
Returns the current SortableCursorOffsetSettingsBuilder instance.
Example
Razor
@(Html.Kendo().Sortable()
.For("#element")
.CursorOffset(co => co.Top(12))
)