sourceObjectId property
Source object ID.
Implementation
int get sourceObjectId {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SourceObjectPosition_getSourceObjectId(
_handle, errorHandler);
});
}
Implementation
set sourceObjectId(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SourceObjectPosition_setSourceObjectId(
_handle, value, errorHandler);
});
}