getInnerSizeAt method
- int index
Get the inner size for the path specified by index.
Parameters
- IN index The path index
Returns
- The inner size
Throws
- An exception if it fails.
Implementation
double getInnerSizeAt(final int index) {
final OperationResult resultString = objectMethod(
_pointerId,
'MapViewPathCollection',
'getInnerSizeAt',
args: index,
);
return resultString['result'];
}