Vcl.ActnMan.TCustomActionBar.ActionControls

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ActionControls[const Index: Integer]: TCustomActionControl read GetActionControl;

C++

__property TCustomActionControl* ActionControls[const int Index] = {read=GetActionControl};

Properties

Type Visibility Source Unit Parent
property public
Vcl.ActnMan.pas
Vcl.ActnMan.hpp
Vcl.ActnMan TCustomActionBar

Description

Lists the controls on the action band.

Use ActionControls to access any of the controls available on the action band. Each control in the list is the user interface element generated to represent one of the TActionClientItem objects that the action manager stores for children of this action band. The TActionClientItem objects are children of the component that is the value of this action band's ActionClient property.

Index is the index of the child control, where 0 specifies the first control, 1 specifies the second control, and so on.

See Also