row property

int get row

Row index for layout placement (1-based).

Not all items will have a row assigned. A returned value of 0 indicates the row is not applicable.

Returns

  • int: one-based row index, or 0 when not assigned.

Implementation

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

  return resultString['result'];
}