Gets or sets the background color at the bottom of a button.

Syntax

public Color ButtonBackColorBottom { get; set; }

Examples

This example describes how to use the 'ButtonBackColorBottom' property. Here, the background color at the bottom of a button is set to 'Aquamarine'.

TXTextControl.ButtonBar buttonBar1 = new TXTextControl.ButtonBar();
buttonBar1.ButtonStyle = TXTextControl.ButtonStyle.ColorScheme;
uttonBar1.ButtonPositions = new TXTextControl.Button[] {
                             TXTextControl.Button.FontBoldButton,
                             TXTextControl.Button.FontNameComboBox };
buttonBar1.BorderStyle = TXTextControl.ButtonBarBorderStyle.ColorScheme;

TXTextControl.ButtonBar.Colors colors = new TXTextControl.ButtonBar.Colors();
colors.BackColor = System.Drawing.Color.White; 
colors.ComboBoxBackColor = System.Drawing.Color.Azure;
colors.ForeColor = System.Drawing.Color.Black;
colors.ButtonBackColorBottom = System.Drawing.Color.Aquamarine;// In this line, the 'ButtonBackColorBottom' property is set.

buttonBar1.DisplayColors = colors;