Vcl.ActnMan.TActionClientsCollection.ParentItem

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ParentItem: TActionClient read FParentItem write FParentItem;

C++

__property TActionClient* ParentItem = {read=FParentItem, write=FParentItem};

Properties

Type Visibility Source Unit Parent
property protected
Vcl.ActnMan.pas
Vcl.ActnMan.hpp
Vcl.ActnMan TActionClientsCollection

Description

Indicates the action client object that uses this collection to maintain its subitems.

ParentItem is the TActionClient descendant that uses this object to implement its Items property. ParentItem corresponds to an action band, while the items in this collection correspond to the child items of that action band.

If the TActionClientsCollection object does not represent the child items of a TActionClient descendant, ParentItem is nil (Delphi) or NULL (C++). For example, on the TActionClientsCollection object that implements the ActionBars property of an action manager, the value of ParentItem is nil (Delphi) or NULL (C++).

See Also