isSelected property
True if the graphic is selected, false otherwise.
Implementation
bool get isSelected {
return _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_Graphic_getIsSelected(_handle, errorHandler);
});
}
Implementation
set isSelected(bool value) {
_withThrowingErrorHandler((errorHandler) {
runtimecore.RT_Graphic_setIsSelected(_handle, value, errorHandler);
});
}