Vcl.ValEdit.TItemProp.PickList

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property PickList: TStrings read GetPickList write SetPickList;

C++

__property System::Classes::TStrings* PickList = {read=GetPickList, write=SetPickList};

Properties

Type Visibility Source Unit Parent
property published
Vcl.ValEdit.pas
Vcl.ValEdit.hpp
Vcl.ValEdit TItemProp

Description

Lists the items that appear in the drop-down pick list for the item.

Use PickList to supply the values that appear in the drop-down pick list for the associated item. PickList lets you supply a static set of items that appear in the drop-down list for the associated item when EditStyle is esPickList. These items can be subsequently modified by an OnGetPickList event handler.

Note: PickList is only used when the EditStyle property is esPickList. If EditStyle is esPickList, and PickList does list a set of values, you must supply an OnGetPickList event handler to supply the items.

See Also