useAdvancedSymbology property
True if the table is using advanced symbology, false otherwise.
Implementation
bool get useAdvancedSymbology {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_ArcGISFeatureTable_getUseAdvancedSymbology(
_handle, errorHandler);
});
}
Implementation
set useAdvancedSymbology(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_ArcGISFeatureTable_setUseAdvancedSymbology(
_handle, value, errorHandler);
});
}