FMX.ActnList.TCustomAction.HideIfUnsupportedInterface

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property HideIfUnsupportedInterface: Boolean read FHideIfUnsupportedInterface write SetHideIfUnsupportedInterface;

C++

__property bool HideIfUnsupportedInterface = {read=FHideIfUnsupportedInterface, write=SetHideIfUnsupportedInterface, nodefault};

Properties

Type Visibility Source Unit Parent
property public
FMX.ActnList.pas
FMX.ActnList.hpp
FMX.ActnList TCustomAction

Description

Defines whether the UnSupported action can be visible and accessible.

If HideIfUnsupportedInterface is True, then the IsSupportedInterface function is used for retrieving the value of the Supported property. In this case, if IsSupportedInterface returns False, then this action is always inaccessible and invisible.

If HideIfUnsupportedInterface is False, then this action can be visible or invisible depending on other properties. In this case, descendant classes or application objects should call IsSupportedInterface to retrieve the visibility and accessibility of the action.

See Also