DataGrid::CaptionForeColor Property

 

Gets or sets the foreground color of the caption area.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property Color CaptionForeColor {
	Color get();
	void set(Color value);
}

Property Value

Type: System.Drawing::Color

A Color that represents the foreground color of the caption area. The default is ActiveCaptionText.

The following code example sets the CaptionForeColor property of the System.Windows.Forms::DataGrid control.


Private Sub SetCaptionForeClr(ByVal myGrid As DataGrid)
   myGrid.CaptionForeColor = System.Drawing.Color.Tomato
End Sub

.NET Framework
Available since 1.1
Return to top
Show: