DataGridTableStyle::SelectionBackColor Property
.NET Framework (current version)
Gets or sets the background color of selected cells.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
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
Available since 1.1
Show: