Aracılığıyla paylaş


DataGridTableStyle.ResetLinkColor Yöntem

Tanım

Özelliği varsayılan değerine sıfırlar LinkColor .

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

Örnekler

Aşağıdaki kod örneğinde bu üyenin kullanımı gösterilmektedir.

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

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

// Reset link color to default.
myDataGridTableStyle->ResetLinkColor();
myString = String::Concat( myString, " to " );
myString = String::Concat( myString, myDataGridTableStyle->LinkColor );

// Show information about changes in color setting.
MessageBox::Show( myString, "Link line color information" );
// String variable used to show message.   
string myString = "Link color changed from: ";
// Store current foreground color of selected cells.
Color myCurrentColor = myDataGridTableStyle.LinkColor;
myString += myCurrentColor.ToString();
// Reset link color to default.
myDataGridTableStyle.ResetLinkColor();
myString += "  to ";
myString += myDataGridTableStyle.LinkColor.ToString();
// Show information about changes in color setting.  
MessageBox.Show(myString, "Link line color information");
' String variable used to show message.   
Dim myString As String = "Link color changed from: "
' Store current foreground color of selected cells.
Dim myCurrentColor As Color = myDataGridTableStyle.LinkColor
myString += myCurrentColor.ToString()
' Reset link color to default.
myDataGridTableStyle.ResetLinkColor()
myString += "  to "
myString += myDataGridTableStyle.LinkColor.ToString()
' Show information about changes in color setting.  
MessageBox.Show(myString, "Link line color information")

Açıklamalar

için DataGridTableStyle bir tasarımcı oluşturuyorsanız veya öğesini birleştiren DataGridTableStylekendi denetiminizi oluşturuyorsanız genellikle bu yöntemi kullanırsınız. Özellik değerinin ShouldSerializeLinkColor varsayılan değerden değişip değişmediğini belirlemek için yöntemini kullanabilirsiniz.

Şunlara uygulanır

Ayrıca bkz.