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






Gets or sets the container Control occupying the body of the CollapsingGroupPanel.

Syntax

Visual Basic (Declaration) 
Public Property ContainerControl As Control
Visual Basic (Usage)Copy Code
Dim instance As CollapsingGroupPanel
Dim value As Control
 
instance.ContainerControl = value
 
value = instance.ContainerControl
C# 
public Control ContainerControl {get; set;}
Delphi 
public read-write property ContainerControl: Control; 
JScript 
public function get,set ContainerControl : Control
Managed Extensions for C++ 
public: __property Control get_ContainerControl();
public: __property void set_ContainerControl( 
   Control value
);
C++/CLI 
public:
property Control ContainerControl {
   Control get();
   void set (Control value);
}

Return Value

A reference to a Control, this property specifies the container control occupying the body of the CollapsingGroupPanel. The default value is null (Nothing in Visual Basic)

Remarks

ContainerControl is useful if you wish to Dock controls in the body of CollapsingGroupPanel or you wish to scroll the content of the CollapsingGroupPanel body. CollapsingGroupPanel maintains the position and size of the ContainerControl ensuring it always coincides with the BodyBounds.

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