layerId property

int layerId

The layer or table Id to specify the SyncDirection.

The Id must match a table of layer Id in the synchronized geodatabase.

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,
    );
  });
}