DataGridTableStyle::SelectionBackColor Property

 

Gets or sets the background color of selected cells.

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

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

Property Value

Type: System.Drawing::Color

The Color that represents the background color of selected cells.

The following code example demonstrates the use of this member.

// Allow the user to select a Color.
ColorDialog^ myColorDialog = gcnew ColorDialog;
myColorDialog->AllowFullOpen = false;
myColorDialog->ShowHelp = true;

// Set the initial color select to the current color.
myColorDialog->Color = myGridTableStyle->SelectionBackColor;

// Show color dialog box.
myColorDialog->ShowDialog();

// Set the backcolor for the selected cells.
myGridTableStyle->SelectionBackColor = myColorDialog->Color;

.NET Framework
Available since 1.1
Return to top
Show: