DataGrid.ParentRowsForeColor Property

Definition

Gets or sets the foreground color of parent rows.

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

Property Value

A Color that represents the foreground color of parent rows. The default is the WindowText color.

Examples

The following code example sets the ParentRowsForeColor property to a new color.


Private Sub SetParentRowsForeClr(ByVal myGrid As DataGrid)
   myGrid.ParentRowsForeColor = System.Drawing.Color.Tomato
End Sub

Applies to