Gets or sets a value indicating whether the Sidebar's pin button is shown. The default value is true.
public bool ShowPinButton { get; set; }
Public Property ShowPinButton() As Boolean
The following example shows the 'Sidebar' class with its two properties, namely 'Show
TXTextControl.Windows.Forms.Sidebar sidebar = new TXTextControl.Windows.Forms.Sidebar();
sidebar.ShowPinButton = false;
sidebar.IsPinned = true;
Dim sidebar As TXTextControl.Windows.Forms.Sidebar = New TXTextControl.Windows.Forms.Sidebar()
sidebar.ShowPinButton = False
sidebar.IsPinned = True