showLocation property
True if location symbols are shown, false otherwise.
Implementation
bool get showLocation {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_LocationDisplay_getShowLocation(
_handle, errorHandler);
});
}
Implementation
set showLocation(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_LocationDisplay_setShowLocation(
_handle, value, errorHandler);
});
}