gridReference property
Retrieves the grid reference of the point.
Returns
- The grid reference of the point as a string.
Implementation
String get gridReference {
final OperationResult resultString =
objectMethod(_pointerId, 'Projection_BNG', 'getGridReference');
return resultString['result'];
}
Sets the grid reference of the point.
Parameters
- IN gridReference The grid reference of the point.
Implementation
set gridReference(String gridReference) {
objectMethod(
_pointerId,
'Projection_BNG',
'setGridReference',
args: gridReference,
);
}