Vcl.ValEdit.TGetPickListEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TGetPickListEvent = procedure(Sender: TObject; const KeyName: string;
Values: TStrings) of object;

C++

typedef void __fastcall (__closure *TGetPickListEvent)(System::TObject* Sender, const System::UnicodeString KeyName, System::Classes::TStrings* Values);

Properties

Type Visibility Source Unit Parent
type
typedef
public
Vcl.ValEdit.pas
Vcl.ValEdit.hpp
Vcl.ValEdit Vcl.ValEdit

Description

TGetPickListEvent is the type for event handlers that supply pick list values to a value list editor.

Sender is the value list editor that uses the drop-down list of values. KeyName is the name of a string that appears in the first column of the current row. Values is a string list that you can fill with candidates for the second (value) column of the value list editor.

See Also