sourceIndex property

int sourceIndex

Source index.

Index of the source.

Implementation

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

Implementation

set sourceIndex(int value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_SourceObjectPosition_setSourceIndex(
        _handle, value, errorHandler);
  });
}