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