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