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






Gets and sets the Panel associated with the SideBarItem. This Panel is displayed in the panel region of the SideBar when the SideBarItem is the SelectedItem.

Syntax

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

Return Value

A reference to a Panel, this property specifies the Panel associated with the SideBarItem. This Panel is displayed in the panel region of the SideBar when the SideBarItem is the SelectedItem.

Remarks

The InternalPanel is also hosted by the SideBarPanelHostWindow. The SideBarPanelHostWindow is displayed when the panel region of a collapsed SideBar is clicked. The InternalPanel of the SelectedItem is the Panel hosted on the SideBarPanelHostWindow.

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