\Kendo\UI\SkeletonContainerGridGap
A PHP class representing the gap setting of SkeletonContainerGrid.
Methods
columns
A value in pixels determining the space between horizontal spacing between the items.
Returns
\Kendo\UI\SkeletonContainerGridGap
Parameters
$value float
Example
<?php
$gap = new \Kendo\UI\SkeletonContainerGridGap();
$gap->columns(1);
?>
rows
A value in pixels determining the space between vertical spacing between the items.
Returns
\Kendo\UI\SkeletonContainerGridGap
Parameters
$value float
Example
<?php
$gap = new \Kendo\UI\SkeletonContainerGridGap();
$gap->rows(1);
?>