sourceObjectId property

int sourceObjectId

Source object ID.

Implementation

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

Implementation

set sourceObjectId(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SourceObjectPosition_setSourceObjectId(
        _handle, value, errorHandler);
  });
}