Vcl.ComCtrls.TItemStates

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TItemStates = set of TItemState;

C++

typedef System::Set<TItemState, TItemState::isNone, TItemState::isActivating> TItemStates;

Properties

Type Visibility Source Unit Parent
set
typedef
public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls Vcl.ComCtrls

Description

TItemState and TItemStates specify the state of an item in a list view control.

TItemStates is a set of TItemState values. TItemState indicates the state of an item in a list view.


It can have any of the following values:

Value Meaning

isNone

Item is in its default state.

isCut

Item is cut (for cut and paste operation).

isDropHilited

Item is highlighted as a drag-and-drop target.

isFocused

Item is focused.

isSelected

Item is selected.

isActivating

Item is active.