DataGridTableStyle.ResetGridLineColor Método
Definição
Redefine a propriedade GridLineColor para seu valor padrão.Resets the GridLineColor property to its default value.
public:
void ResetGridLineColor();
public void ResetGridLineColor ();
member this.ResetGridLineColor : unit -> unit
Public Sub ResetGridLineColor ()
Exemplos
O exemplo de código a seguir demonstra o uso desse membro.The following code example demonstrates the use of this member.
private:
void Button_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Change the 'GridLineColor'.
myDataTableStyle->GridLineColor = Color::Blue;
}
void Button1_Click( Object^ /*sender*/, EventArgs^ /*e*/ )
{
// Reset the 'GridLineColor' to its orginal color.
myDataTableStyle->ResetGridLineColor();
}
private void Button_Click(object sender, EventArgs e)
{
// Change the 'GridLineColor'.
myDataTableStyle.GridLineColor = Color.Blue;
}
private void Button1_Click(object sender, EventArgs e)
{
// Reset the 'GridLineColor' to its orginal color.
myDataTableStyle.ResetGridLineColor();
}
Private Sub Button_Click(ByVal sender As Object, ByVal e As EventArgs) Handles myButton.Click
' Change the 'GridLineColor'.
myDataTableStyle.GridLineColor = Color.Blue
End Sub
Private Sub Button1_Click(ByVal sender As Object, ByVal e As EventArgs) Handles myButton1.Click
' Reset the 'GridLineColor' to its orginal color.
myDataTableStyle.ResetGridLineColor()
End Sub
Comentários
Normalmente, você usa esse método se estiver criando um designer para o DataGridTableStyle ou criando seu próprio controle incorporando o DataGridTableStyle .You typically use this method if you are either creating a designer for the DataGridTableStyle or creating your own control incorporating the DataGridTableStyle. Você pode usar o ShouldSerializeGridLineColor método para determinar se o valor da propriedade foi alterado de seu padrão.You can use the ShouldSerializeGridLineColor method to determine whether the property value has changed from its default.