EnumDrawingItemState
EnumDrawingItemState
defines the various states that a drawing item can be in, providing a mechanism for distinguishing between normal and selected states.
enum EnumDrawingItemState {
/**
* DIS_DEFAULT: The default state of a drawing item. This state indicates that
* the drawing item is in its normal, unselected state.
*/
DIS_DEFAULT = 1,
/**
* DIS_SELECTED: Indicates that the drawing item is currently selected. This state
* can trigger different behaviors or visual styles, such as highlighting the item
* to show it is active or the focus of user interaction.
*/
DIS_SELECTED = 2
}