ManagementUIColorTable.PaddingBackColor Property

Definition

When overridden in a derived class, gets the color of the toolbar padding.

public:
 abstract property System::Drawing::Color PaddingBackColor { System::Drawing::Color get(); };
public abstract System.Drawing.Color PaddingBackColor { get; }
member this.PaddingBackColor : System.Drawing.Color
Public MustOverride ReadOnly Property PaddingBackColor As Color

Property Value

A Color object that indicates the color of the toolbar padding.

Examples

The following example demonstrates the PaddingBackColor property. This code example is part of a larger example provided for the ManagementUIColorTable class.

ListViewItem item24 = new ListViewItem();
item24.Text = "PaddingBackColor";
item24.SubItems.Add(uiService.Colors.PaddingBackColor.ToString());
item24.BackColor = uiService.Colors.PaddingBackColor;
ListView.Items.Add(item24);

Remarks

This property enables you to determine the color of the toolbar padding, which is the space between toolbar items and the edge of the toolbar.

Applies to