layerId property

int layerId

The layer or table Id to further filter in the generated geodatabase.

The Ids used here must match Ids used in the synchronized geodatabase. Only layers that need further refining need to be included.

Implementation

int get layerId {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_SyncLayerOption_getLayerId(_handle, errorHandler);
  });
}
void layerId=(int value)

Implementation

set layerId(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SyncLayerOption_setLayerId(_handle, value, errorHandler);
  });
}