SkeletonContainerGridGapSettingsBuilder

Methods

Columns(System.Double)

Specifies a pixel value determining the space between horizontal spacing between the items.

Parameters

value - System.Double

The value that configures the space.

Example

Razor
 
            @(Html.Kendo().SkeletonContainer()
                .Name("skeleton")
                .Grid(grid => {
                    grid.Gap(gap => gap.Columns(20));
                })
            )
             

Rows(System.Double)

Specifies a pixel value determining the space between vertical spacing between the items.

Parameters

value - System.Double

The value that configures the space.

Example

Razor
 
            @(Html.Kendo().SkeletonContainer()
                .Name("skeleton")
                .Grid(grid => {
                    grid.Gap(gap => gap.Rows(20));
                })
            )
             
In this article
MethodsColumns(System.Double)Rows(System.Double)
Not finding the help you need?
Contact Support