rowCount property

num get rowCount

For Panel.Table|Table Panels: This read-only property returns the number of rows. This value is only valid after the Panel has been measured.

Implementation

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

Implementation

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