DataGrid.CaptionForeColor Property
Definition
Gets or sets the foreground color of the caption area.
public:
property System::Drawing::Color CaptionForeColor { System::Drawing::Color get(); void set(System::Drawing::Color value); };
public System.Drawing.Color CaptionForeColor { get; set; }
member this.CaptionForeColor : System.Drawing.Color with get, set
Public Property CaptionForeColor As Color
Property Value
A Color that represents the foreground color of the caption area. The default is ActiveCaptionText.
Examples
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