次の方法で共有


DataGridTableStyle.ResetHeaderFont メソッド

HeaderFont プロパティを既定値にリセットします。

Public Sub ResetHeaderFont()
[C#]
public void ResetHeaderFont();
[C++]
public: void ResetHeaderFont();
[JScript]
public function ResetHeaderFont();

解説

通常、 DataGridTableStyle のデザイナまたは DataGridTableStyle を組み込んだ独自のコントロールを作成する場合に、このメソッドを使用します。

使用例

 
Protected Sub MySetButton_Click(sender As Object, e As EventArgs)
   ' Set the 'HeaderFont' property of DataGridTableStyle instance.
   myTableStyle.HeaderFont = New Font("Impact", 10)
   ' Add the DataGridTableStyle instance to the GridTableStylesCollection. 
   myDataGrid.TableStyles.Add(myTableStyle)
End Sub 'MySetButton_Click

Protected Sub MyResetButton_Click(sender As Object, e As EventArgs)
   ' Reset the Header Font to its default value.
   myTableStyle.ResetHeaderFont()
End Sub 'MyResetButton_Click

[C#] 
protected void MySetButton_Click(object sender, EventArgs e)
{
   // Set the 'HeaderFont' property of the DataGridTableStyle instance.
   myTableStyle.HeaderFont=new Font("Impact",10);
   // Add the DataGridTableStyle instance to the GridTableStylesCollection. 
   myDataGrid.TableStyles.Add(myTableStyle);
}
protected void MyResetButton_Click(object sender, EventArgs e)
{
   // Reset the Header Font to its default value.
   myTableStyle.ResetHeaderFont();
}

[C++] 
protected:
    void MySetButton_Click(Object* /*sender*/, EventArgs* /*e*/) {
        // Set the 'HeaderFont' property of the DataGridTableStyle instance.
        myTableStyle->HeaderFont = new System::Drawing::Font(S"Impact", 10);
        // Add the DataGridTableStyle instance to the GridTableStylesCollection.
        myDataGrid->TableStyles->Add(myTableStyle);
    }

    void MyResetButton_Click(Object* /*sender*/, EventArgs* /*e*/) {
        // Reset the Header Font to its default value.
        myTableStyle->ResetHeaderFont();
    }

[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 名前空間 | HeaderBackColor | HeaderForeColor | ColumnHeadersVisible | HeaderFont | HeaderFontChanged | HeaderText