DataGridTableStyle::SelectionForeColor Property

 

Gets or sets the foreground color of selected cells.

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

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

Property Value

Type: System.Drawing::Color

The Color that represents the foreground color of selected cells.

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
Return to top
Show: