gridOrigin property

Point get gridOrigin

For Panel.Grid|Grid Panels: Gets or sets an origin point for the grid cells. The units are in local coordinates. The default is (0,0). Any new value must use real numbers.

Implementation

_i3.Point get gridOrigin => _i4.getProperty(
      this,
      'gridOrigin',
    );
set gridOrigin (Point value)

Implementation

set gridOrigin(_i3.Point value) {
  _i4.setProperty(
    this,
    'gridOrigin',
    value,
  );
}