onRightSideOfSource property
On right side of source.
True if network element on right side of network source, false - otherwise.
Implementation
bool get onRightSideOfSource {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_NetworkLocation_getOnRightSideOfSource(
_handle, errorHandler);
});
}
Implementation
set onRightSideOfSource(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_NetworkLocation_setOnRightSideOfSource(
_handle, value, errorHandler);
});
}