Vcl.CategoryButtons.TCatButtonCopyEvent

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

TCatButtonCopyEvent = procedure(Sender: TObject;
const SourceButton, CopiedButton: TButtonItem) of object;

C++

typedef void __fastcall (__closure *TCatButtonCopyEvent)(System::TObject* Sender, TButtonItem* const SourceButton, TButtonItem* const CopiedButton);

Properties

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

Description

TCatButtonCopyEvent is the procedure type of the Vcl.CategoryButtons.TCategoryButtons.OnCopyButton event.

The parameters expected by this event are described in the following table:



Argument Meaning

Sender

Represents the TCategoryButtons instance that generated the event.

SourceButton

Represents the source button that is to be copied.

CopiedButton

Represents the copied button.

See Also