Limitations
A sidebar can only be sized if the Sidebar.
Gets or sets a value indicating whether the Sidebar can be sized with the mouse. The default value is true.
public bool IsSizable { get; set; }
The following example shows the Sidebar class with its different properties.
TXTextControl.Windows.Forms.Sidebar sidebar = new TXTextControl.Windows.Forms.Sidebar();
sidebar.ShowPinButton = false;
sidebar.IsPinned = true;
sidebar.IsShown = false;
sidebar.IsSizable = false; // here, the IsSizable property is set
A sidebar can only be sized if the Sidebar.