cellSize property

Size get cellSize

Gets or sets the minimum part size by which each part is positioned in the grid.

The default value is NaN x NaN. The units are in document coordinates.

When the cell size is smaller than a part, the part will occupy more than one cell. This allows parts to be positioned closer to each other, but then variations in part sizes may cause them not to be aligned in perfect rows or columns.

Implementation

_i3.Size get cellSize => _i4.getProperty(
      this,
      'cellSize',
    );
set cellSize (Size value)

Implementation

set cellSize(_i3.Size value) {
  _i4.setProperty(
    this,
    'cellSize',
    value,
  );
}