DataGridTableStyle.ResetSelectionForeColor Méthode

Définition

Rétablit la valeur par défaut de la propriété SelectionForeColor.

public:
 void ResetSelectionForeColor();
public void ResetSelectionForeColor ();
member this.ResetSelectionForeColor : unit -> unit
Public Sub ResetSelectionForeColor ()

Exemples

L’exemple de code suivant illustre l’utilisation de ce membre.

// String variable used to show message.
String^ myString = "Fore color changed from: ";

// Store current foreground color of selected cells.
Color myCurrentColor = customersStyle->SelectionForeColor;
myString = String::Concat( myString, myCurrentColor );

// Reset selection fore color to default.
customersStyle->ResetSelectionForeColor();
myString = String::Concat( myString, "  to " );
myString = String::Concat( myString, customersStyle->SelectionForeColor );

// Show information about changes in color setting.
MessageBox::Show( myString, "Selection fore color information" );
// String variable used to show message.   
string myString = "Fore color changed from: ";
// Store current foreground color of selected cells.
Color myCurrentColor = customersStyle.SelectionForeColor;
myString += myCurrentColor.ToString();
// Reset selection fore color to default.
customersStyle.ResetSelectionForeColor();
myString += "  to ";
myString += customersStyle.SelectionForeColor.ToString();
// Show information about changes in color setting.  
MessageBox.Show(myString, "Selection fore color information");
' String variable used to show message.   
Dim myString As String = "Fore color changed from: "
' Store current foreground color of selected cells.
Dim myCurrentColor As Color = customersStyle.SelectionForeColor
myString += myCurrentColor.ToString()
' Reset selection fore color to default.
customersStyle.ResetSelectionForeColor()
myString += "  to "
myString += customersStyle.SelectionForeColor.ToString()
' Show information about changes in color setting.  
MessageBox.Show(myString, "Selection fore color information")

Remarques

Vous utilisez généralement cette méthode si vous créez un concepteur pour ou DataGridTableStyle si vous créez votre propre contrôle incorporant le DataGridTableStyle. Vous pouvez utiliser la ShouldSerializeSelectionForeColor méthode pour déterminer si la valeur de la propriété a changé par rapport à sa valeur par défaut.

S’applique à

Voir aussi