isVisible property
True if grid lines are visible on the BackgroundGrid.backgroundColor
,
false otherwise.
In the context of ArcGISMapViewController, this value indicates if the
BackgroundGrid.lineColor
is visible. In the context of
SceneView, this value indicates
if both the BackgroundGrid.backgroundColor
and the
BackgroundGrid.lineColor
are visible. The default value is true.
Implementation
bool get isVisible {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_BackgroundGrid_getIsVisible(
_handle,
errorHandler,
);
});
}
Implementation
set isVisible(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_BackgroundGrid_setIsVisible(
_handle,
value,
errorHandler,
);
});
}