count property

int get count

Number of entrance locations.

Returns the total number of entrances available on this object. Use this value together with getCoordinates and getType to iterate all entrances.

Returns

  • The number of entrances as an integer.

Implementation

int get count {
  final OperationResult resultString = objectMethod(
    pointerId,
    'EntranceLocations',
    'getCount',
  );

  return resultString['result'];
}