DataGridTableStyle.ResetLinkColor 方法

定义

LinkColor 属性重置为其默认值。

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

示例

下面的代码示例演示了此成员的使用。

// 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")

注解

如果为 DataGridTableStyle 合并的控件创建设计器或创建自己的控件 DataGridTableStyle,通常使用此方法。 可以使用该方法 ShouldSerializeLinkColor 来确定属性值是否已从默认值更改。

适用于

另请参阅