findBestSequence property

bool findBestSequence

Find best sequence.

Implementation

bool get findBestSequence {
  return _withThrowingErrorHandler((errorHandler) {
    return runtimecore.RT_RouteParameters_getFindBestSequence(
      _handle,
      errorHandler,
    );
  });
}
void findBestSequence=(bool value)

Implementation

set findBestSequence(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_RouteParameters_setFindBestSequence(
      _handle,
      value,
      errorHandler,
    );
  });
}