Vcl.ActnMan.TActionClientItem.CheckUnused

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property CheckUnused: Boolean read FCheckUnused write FCheckUnused;

C++

__property bool CheckUnused = {read=FCheckUnused, write=FCheckUnused, nodefault};

Properties

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

Description

Indicates whether the TActionClientItem object should be checked to see if it is unused and, if so, hidden from view.

Unused contents of ActionBands can be hidden from the user. Use CheckUnused to determine whether a particular action client item goes through this kind of checking. The default value is true, which means that the item can be hidden. Note that CheckUnused is merely an indicator, not a control. If you want the object to be visible regardless of how much it is used, do not change CheckUnused. Instead, set UsageCount to -1.

See Also