DataGrid.ParentRowsBackColor Property

Definition

Gets or sets the background color of parent rows.

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

Property Value

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

Examples

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


Private Sub SetParentRowBackClr(ByVal myGrid As DataGrid)
   myGrid.ParentRowsBackColor = System.Drawing.Color.Beige
End Sub

Applies to