row property

int get row

Get the one based row.

Not all items may have a row assigned.

Returns

  • Row of the item. Zero indicates N/A

Implementation

int get row {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SignpostItem',
    'getRow',
  );

  return resultString['result'];
}