Remarks
Because of internal usage, it is recommended to use this property instead of Sidebar.
Gets or sets a value indicating whether the Sidebar is shown. The default value is true.
public bool IsShown { get; set; }
Public Property IsShown() As Boolean
The following example shows the 'Sidebar' class with its three properties, namely 'Show
TXTextControl.Windows.Forms.Sidebar sidebar = new TXTextControl.Windows.Forms.Sidebar();
sidebar.ShowPinButton = false;
sidebar.IsPinned = true;
sidebar.IsShown = false; // here, the IsShown property is set
Dim sidebar As TXTextControl.Windows.Forms.Sidebar = New TXTextControl.Windows.Forms.Sidebar()
sidebar.ShowPinButton = False
sidebar.IsPinned = True
sidebar.IsShown = false ' here, the IsShown property is set
Because of internal usage, it is recommended to use this property instead of Sidebar.