Vcl.CategoryButtons.TCatButtonEditingEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCatButtonEditingEvent = procedure(Sender: TObject; Item: TBaseItem;
var AllowEdit: Boolean) of object;

C++

typedef void __fastcall (__closure *TCatButtonEditingEvent)(System::TObject* Sender, TBaseItem* Item, bool &AllowEdit);

Properties

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

Description

Used in the TCategoryButtons. OnEditing event.

This is the type that defines the event signature of the TCategoryButtons. OnEditing event. See TCategoryButtons.OnEditing for more details.

Sender is the TCategoryButtons control in which an item is about to be edited.

Item is the baseitem whose caption is about to be edited.

AllowEdit indicates whether the user is allowed to edit the label of the caption specified by the Item parameter.

See Also