DataGridTableStyle::SelectionForeColor Property
.NET Framework (current version)
Gets or sets the foreground color of selected cells.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
The following code example demonstrates the use of this member.
// Creates a common color dialog box. ColorDialog^ myColorDialog = gcnew ColorDialog; myColorDialog->AllowFullOpen = false; // Allow the user to get help. myColorDialog->ShowHelp = true; // Set the initial color select to the current color. myColorDialog->Color = customersStyle->SelectionForeColor; // Show color dialog box. myColorDialog->ShowDialog(); // Set selection fore color to selected color. customersStyle->SelectionForeColor = myColorDialog->Color;
.NET Framework
Available since 1.1
Available since 1.1
Show: