column property

int get column

Get the one based column.

Not all items may have a column assigned.

Returns

  • Column of the item. Zero indicates N/A

Throws

  • An exception if it fails.

Implementation

int get column {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'SignpostItem',
    'getColumn',
  );

  return resultString['result'];
}