次の方法で共有


DataGridTableStyle.ResetBackColor メソッド

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

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

解説

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

使用例

 
Private Sub AddCustomColumnStyle()
   ' Set the TableStyle Mapping name.
   myTableStyle.MappingName = "customerTable"
   myTableStyle.BackColor = Color.Pink
   
   ' Set the ColumnStyle properties and add to TableStyle.
   myColumnStyle.MappingName = "Customers"
   myColumnStyle.HeaderText = "Customer Name"
   myColumnStyle.Width = 250
   myTableStyle.GridColumnStyles.Add(myColumnStyle)
   myDataGrid.TableStyles.Add(myTableStyle)
End Sub 'AddCustomColumnStyle


Private Sub myButton1_Click(sender As Object, e As EventArgs)
   ' Reset the background color.
   myTableStyle.ResetBackColor()
End Sub 'myButton1_Click

[C#] 
private void AddCustomColumnStyle()
{
   // Set the TableStyle Mapping name.
   myTableStyle.MappingName = "customerTable";
   myTableStyle.BackColor = Color.Pink;

   // Set the ColumnStyle properties and add to TableStyle.
   myColumnStyle.MappingName = "Customers";
   myColumnStyle.HeaderText = "Customer Name";
   myColumnStyle.Width = 250;
   myTableStyle.GridColumnStyles.Add(myColumnStyle);
   myDataGrid.TableStyles.Add(myTableStyle);
}

private void myButton1_Click(object sender, EventArgs e)
{
   // Reset the background color.
   myTableStyle.ResetBackColor();
}

[C++] 
private:
    void AddCustomColumnStyle() {
        // Set the TableStyle Mapping name.
        myTableStyle->MappingName = S"customerTable";
        myTableStyle->BackColor = Color::Pink;

        // Set the ColumnStyle properties and add to TableStyle.
        myColumnStyle->MappingName = S"Customers";
        myColumnStyle->HeaderText = S"Customer Name";
        myColumnStyle->Width = 250;
        myTableStyle->GridColumnStyles->Add(myColumnStyle);
        myDataGrid->TableStyles->Add(myTableStyle);
    }

    void myButton1_Click(Object* /*sender*/, EventArgs* /*e*/) {
        // Reset the background color.
        myTableStyle->ResetBackColor();
    }

[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 名前空間