impedanceCutoff property
Impedance cutoff.
It's a value for the impedance beyond which facilities should not be found.
Implementation
double get impedanceCutoff {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Incident_getImpedanceCutoff(
_handle,
errorHandler,
);
});
}
Implementation
set impedanceCutoff(double value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Incident_setImpedanceCutoff(
_handle,
value,
errorHandler,
);
});
}