ICreate.Controls.Bars Send comments on this topic.
GetInvisible Method
See Also 
ICreate.Controls.Bars Namespace > CollapsingGroupPanel Class : GetInvisible Method






control
The Control whose visibility is to be retrieved.
Gets the Boolean value indicating if the specified Control is invisible.

Syntax

Visual Basic (Declaration) 
Public Function GetInvisible( _
   ByVal control As Control _
) As Boolean
Visual Basic (Usage)Copy Code
Dim instance As CollapsingGroupPanel
Dim control As Control
Dim value As Boolean
 
value = instance.GetInvisible(control)
C# 
public bool GetInvisible( 
   Control control
)
Delphi 
public function GetInvisible( 
    control: Control
): Boolean; 
JScript 
public function GetInvisible( 
   control : Control
) : boolean;
Managed Extensions for C++ 
public: bool GetInvisible( 
   Control control
) 
C++/CLI 
public:
bool GetInvisible( 
   Control control
) 

Parameters

control
The Control whose visibility is to be retrieved.

Return Value

A System.Boolean value which is true if the specified control is invisible; otherwise the return value is false and the control is visible.

Remarks

The CollapsingGroupPanel controls the Visible property of its child controls. The child controls are hidden when the panel collapses and made visible when it expands. Similarly if a child control intersects the footer or footer line then it is hidden. When the panel size changes and the control and footer or footer line no longer interset then the child control is made visible. The provided property Invisible override this behaviour. If a child control is made invisible then it will not be shown when the panel expands or when it no longer intersects the footer or footer line. The GetInvisible and SetInvisible methods implement the Invisible provided property.

Requirements

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also