useAdvancedSymbology property

bool useAdvancedSymbology

True if the table is using advanced symbology, false otherwise.

Implementation

bool get useAdvancedSymbology {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_ArcGISFeatureTable_getUseAdvancedSymbology(
      _handle,
      errorHandler,
    );
  });
}
void useAdvancedSymbology=(bool value)

Implementation

set useAdvancedSymbology(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_ArcGISFeatureTable_setUseAdvancedSymbology(
      _handle,
      value,
      errorHandler,
    );
  });
}