Vcl.ComCtrls.TListItem.Checked

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Checked: Boolean read GetChecked write SetChecked;

C++

__property bool Checked = {read=GetChecked, write=SetChecked, nodefault};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ComCtrls.pas
Vcl.ComCtrls.hpp
Vcl.ComCtrls TListItem

Description

Determines whether a check mark appears next to the list item.

Use Checked to indicate whether the list item represents a selected option by displaying a check mark next to the item in the list view. When Checked is true, a check mark appears next to the item. When Checked is false, no check mark appears.

Note: Set the Checkboxes property of the List View to true before using the Checked property.

See Also