size property

int get size

Get the number of overlay datasets in this collection.

Returns

  • The number of overlays

Throws

  • An exception if it fails

Implementation

int get size {
  final OperationResult resultString = objectMethod(
    _pointerId,
    'OverlayCollection',
    'size',
  );
  return resultString['result'];
}