DataGridTableStyle.ResetLinkColor メソッド
LinkColor プロパティを既定値にリセットします。
Public Sub ResetLinkColor()
[C#]
public void ResetLinkColor();
[C++]
public: void ResetLinkColor();
[JScript]
public function ResetLinkColor();
解説
通常、 DataGridTableStyle のデザイナまたは DataGridTableStyle を組み込んだ独自のコントロールを作成する場合に、このメソッドを使用します。 ShouldSerializeLinkColor メソッドを使用すると、プロパティの値が既定値から変更されたかどうかを確認できます。
使用例
' 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")
[C#]
// 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");
[C++]
// String variable used to show message.
String* myString = S"Link color changed from: ";
// Store current foreground color of selected cells.
Color myCurrentColor = myDataGridTableStyle->LinkColor;
myString = String::Concat(myString,__box( myCurrentColor));
// Reset link color to default.
myDataGridTableStyle->ResetLinkColor();
myString = String::Concat(myString, S" to ");
myString = String::Concat(myString,__box( myDataGridTableStyle->LinkColor));
// Show information about changes in color setting.
MessageBox::Show(myString, S"Link line color information");
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
DataGridTableStyle クラス | DataGridTableStyle メンバ | System.Windows.Forms 名前空間 | LinkColor | LinkColorChanged | ShouldSerializeLinkColor