DesignIntf.IDesigner60.IsComponentHidden

From RAD Studio API Documentation
Jump to: navigation, search

[–] Properties
Type: function
Visibility: public
Source:
DesignIntf.pas
DesignIntf.hpp
Unit: DesignIntf
Parent: IDesigner60

Delphi

function IsComponentHidden(Component: TComponent): Boolean;

C++

virtual bool __fastcall IsComponentHidden(System::Classes::TComponent* Component) = 0 ;

Description

Indicates whether a component does not appear directly in the form designer.

Call IsComponentHidden to determine whether the component specified by the Component parameter appears directly in the form designer. When IsComponentHidden returns true, the component does not appear as an icon or control. For example, menu items and field components are hidden components, and can only be accessed through a parent component's editor (the menu designer or fields editor). Hidden components are registered using the RegisterNoIcon procedure.

See Also