[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Set type used to store value(s) from the TListItemState enumeration.
Source position: comctrls.pp line 971
type TListItemStates = set of ( |
||
lisCut, |
|
The list item has its Cut property set to True. |
lisDropTarget, |
|
The list item has its DropTarget property set to True. |
lisFocused, |
|
The list item has its Focused property set to True. |
lisSelected |
|
The list item has its Selected property set to True. |
); |
TListItemStates is a set type used to store zero or more values from the TListItemState enumeration. TListItemStates is the type used to implement the States member in TListItem. Values are included in and excluded from the set when the corresponding properties in TListItem are changed.
|
Cut this item from the list (but it can be placed on the clipboard). |
|
|
DropTarget - returns True if this is a valid target on the list for dropping. |
|
|
Property is true if this item has Focus. |
|
|
Whether this Item has been Selected (often denoted by a check-mark). |
|
|
Ordinal position for the image used to represent the state for the list item. |
lazarus-ccr.sourceforge.net |