isSelected property

bool isSelected

True if the graphic is selected, false otherwise.

Implementation

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

Implementation

set isSelected(bool value) {
  _withThrowingErrorHandler((errorHandler) {
    runtimecore.RT_Graphic_setIsSelected(
      _handle,
      value,
      errorHandler,
    );
  });
}