sourceIndex property
Source index.
Index of the source.
Implementation
int get sourceIndex {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SourceObjectPosition_getSourceIndex(
_handle, errorHandler);
});
}
Implementation
set sourceIndex(int value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_SourceObjectPosition_setSourceIndex(
_handle, value, errorHandler);
});
}