getCoordinatesCount method
- int part = 0,
Get marker coordinates count.
Parameters
- IN part The marker part index to which the function applies, default 0
Returns
Coordinates count if part is valid otherwise error::KInvalidInput
Implementation
int getCoordinatesCount({final int part = 0}) {
final OperationResult resultString = objectMethod(
_pointerId,
'Marker',
'getCoordinatesCount',
args: part,
);
return resultString['result'];
}