position property

num get position

This read-only property returns the actual arranged row or column starting position, after arrangement, in local coordinates. This value gives the Y position if #isRow is true; otherwise this gives the X position. The value is meaningless until after the Table Panel using this RowColumnDefinition has been arranged.

Implementation

_i2.num get position => _i4.getProperty(
      this,
      'position',
    );
set position (num value)

Implementation

set position(_i2.num value) {
  _i4.setProperty(
    this,
    'position',
    value,
  );
}