ManagementUIColorTable.CommandBarDragHandleShadow Property

Definition

When overridden in a derived class, gets the color of the shadow that indicates that the user is dragging the command bar.

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

Property Value

A Color object that indicates the shadow color of the command bar that the user is dragging.

Examples

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

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

Remarks

This property enables you to determine the color of the command bar shadow when the user drags the control.

Applies to