returnSchemaOnlyForEditableLayers property

bool returnSchemaOnlyForEditableLayers

Whether or not feature layers taken offline should be schema only and contain no data.

For an upload only type workflow, this property can be set to true to take feature layers offline with no existing data in them. If GenerateOfflineMapParameters is used in conjunction with GenerateOfflineMapParameterOverrides this property is superseded.

Implementation

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

Implementation

set returnSchemaOnlyForEditableLayers(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore
        .RT_GenerateOfflineMapParameters_setReturnSchemaOnlyForEditableLayers(
            _handle, value, errorHandler);
  });
}