queryOption property

GenerateLayerQueryOption queryOption

Whether all, filtered or no features will be copied from the server when creating a geodatabase.

Determines how other properties of the GenerateLayerOption are applicable, valid combinations are:

The default is GenerateLayerQueryOption.useFilter.

Implementation

GenerateLayerQueryOption get queryOption {
  final coreValue = _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_GenerateLayerOption_getQueryOption(
        _handle, errorHandler);
  });
  return GenerateLayerQueryOption._fromCoreValue(coreValue);
}
void queryOption=(GenerateLayerQueryOption value)

Implementation

set queryOption(GenerateLayerQueryOption value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_GenerateLayerOption_setQueryOption(
        _handle, value.coreValue, errorHandler);
  });
}