gridCellSize property
Size
get
gridCellSize
For Panel.Grid|Grid Panels: Gets or sets the distance between lines. The units are in local coordinates. The default is 10x10. Any new width or height must be a positive real number.
Implementation
_i3.Size get gridCellSize => _i4.getProperty(
this,
'gridCellSize',
);
set
gridCellSize
(Size value)
Implementation
set gridCellSize(_i3.Size value) {
_i4.setProperty(
this,
'gridCellSize',
value,
);
}