DataGrid.HeaderForeColor Property

Definition

Gets or sets the foreground color of headers.

public:
 property System::Drawing::Color HeaderForeColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color HeaderForeColor { get; set; }
member this.HeaderForeColor : System.Drawing.Color with get, set
Public Property HeaderForeColor As Color

Property Value

A Color that represents the foreground color of the grid's column headers, including the column header text and the plus/minus glyphs. The default is ControlText color.

Examples

The following code example sets the foreground color of the grid's column headers.

Private Sub SetHeaderForeClr(ByVal myGrid As DataGrid, ByVal newColor As System.Drawing.Color)
    myGrid.HeaderForeColor = newColor
 End Sub

Applies to

See also