DesignIntf.IDesigner60.IsComponentHidden

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function IsComponentHidden(Component: TComponent): Boolean;

C++

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

Properties

Type Visibility Source Unit Parent
function public
DesignIntf.pas
DesignIntf.hpp
DesignIntf IDesigner60

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