Gets or sets a value indicating whether the Sidebar's title is shown. The default value is true.

Syntax

public bool ShowTitle { get; set; }

Examples

The following example shows the Sidebar class with its different properties. Here, the ShowTitle property has been set to false so that the title of the sidebar is not displayed.

TXTextControl.Windows.Forms.Sidebar sidebar = new TXTextControl.Windows.Forms.Sidebar();
sidebar.ShowPinButton = false;
sidebar.IsPinned = true;
sidebar.IsShown = false;
sidebar.IsSizable = false;
sidebar.ShowTitle = false; // here, the ShowTitle property is set