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






Gets or sets the Control whose visibility is controlled by the SideBarItem.

Syntax

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

Return Value

A reference to a Control, this property stores the Control assigned to the SideBarItem. The Control is visible when the SideBarItem is the SelectedItem; otherwise the SideBarItem is not the SelectedItem and the Control is hidden. The default value is null (Nothing in Visual Basic).

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