DataGrid.CaptionBackColor Property

Definition

Gets or sets the background color of the caption area.

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

Property Value

A Color that represents the caption's background color. The default is ActiveCaption color.

Examples

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


Private Sub SetCaptionBackClr(ByVal myGrid As DataGrid)
   myGrid.CaptionBackColor = System.Drawing.Color.Blue
End Sub

Applies to

See also