DataGrid.ResetSelectionBackColor Método

Definição

Redefine a propriedade SelectionBackColor para seu valor padrão.

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

Exemplos

O exemplo de código a seguir demonstra o uso deste membro.

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

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

// Reset selection background color to default.
myDataGrid->ResetSelectionBackColor();
myString = String::Concat( myString, " to " );
myString = String::Concat( myString, myDataGrid->SelectionBackColor.ToString() );

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

Comentários

Normalmente, você usará esse método se estiver criando um designer para o System.Windows.Forms.DataGrid controle ou criando seu próprio controle incorporando o System.Windows.Forms.DataGrid. Você pode usar o ShouldSerializeSelectionBackColor método para determinar se o valor da propriedade foi alterado de seu padrão.

Aplica-se a