次の方法で共有


DataColumnCollection.Clear メソッド

列のコレクションを消去します。

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

解説

列の追加または削除によって、コレクションが正常に変更された場合は、 OnCollectionChanged イベントが発生します。

使用例

[Visual Basic, C#, C++] 列のコレクションを消去する例を次に示します。

 
Private Sub ClearColumnsCollection(dt As DataTable)
    Dim cols As DataColumnCollection
    ' Get the DataColumnCollection from a DataTable in a DataSet.
    cols = dt.Columns
    cols.Clear()
End Sub

[C#] 

 private void ClearColumnsCollection(DataTable dt){
    DataColumnCollection cols;
    // Get the DataColumnCollection from a DataTable in a DataSet.
    cols = dt.Columns;
    cols.Clear();
 }

[C++] 

private:
 void ClearColumnsCollection(DataTable* dt){
    DataColumnCollection* cols;
    // Get the DataColumnCollection from a DataTable in a DataSet.
    cols = dt->Columns;
    cols->Clear();
 }

[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 ファミリ, .NET Compact Framework - Windows CE .NET

参照

DataColumnCollection クラス | DataColumnCollection メンバ | System.Data 名前空間