DataGrid::CaptionBackColor Property

 

Gets or sets the background color of the caption area.

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

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

Property Value

Type: System.Drawing::Color

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

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

.NET Framework
Available since 1.1
Return to top
Show: