Vcl.ActnMan.TCustomActionManager.LinkedActionLists

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property LinkedActionLists: TActionListCollection read GetLinkedActionLists  write SetLinkedActionLists stored IsLinkedActionListsStored;

C++

__property TActionListCollection* LinkedActionLists = {read=GetLinkedActionLists, write=SetLinkedActionLists, stored=IsLinkedActionListsStored};

Properties

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

Description

Contains a collection of action lists available from action bands and menus.

LinkedActionLists is a linked list of TActionListCollection objects. LinkedActionLists are simple data structures with two fields. One field is a TCustomActionList object, which is a list of possible actions. The other field is a caption, which defines the action list's description appearing on the action band or menu.

Use LinkedActionLists to merge in action lists from other sources outside the action manager. Those action lists will become accessible from action bands and menus. Application users can exploit this feature, for example, to reorganize items from a traditional main menu bar.

See Also