Vcl.CategoryButtons.TCatButtonEditedEvent
Delphi
TCatButtonEditedEvent = procedure(Sender: TObject; Item: TBaseItem; var S: string) of object;
C++
typedef void __fastcall (__closure *TCatButtonEditedEvent)(System::TObject* Sender, TBaseItem* Item, System::UnicodeString &S);
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
type typedef |
public | Vcl.CategoryButtons.pas Vcl.CategoryButtons.hpp |
Vcl.CategoryButtons | Vcl.CategoryButtons |
Description
Used in the TCategoryButtons.OnEdited event.
This event is used in the TCategoryButtons.OnEdited event after the user edits the caption of a baseitem (button or category) associated with a TCategoryButtons.
Sender is the TCategoryButtons control in which an item's caption was edited.
Item is the baseitem whose caption was edited.
The S parameter is the new value of the baseitem's Caption property.