次の方法で共有


DataTable.DefaultView プロパティ

フィルタ処理されたビューまたはカーソル位置を含むことがある、テーブルのカスタマイズされたビューを取得します。

Public ReadOnly Property DefaultView As DataView
[C#]
public DataView DefaultView {get;}
[C++]
public: __property DataView* get_DefaultView();
[JScript]
public function get DefaultView() : DataView;

プロパティ値

DataTable に関連付けられている DataView

解説

DefaultView プロパティは、 DataTable の並べ替え、フィルタ処理、および検索に使用できる DataView を返します。

使用例

[Visual Basic, C#, C++] DefaultView プロパティを使用して、 DataTable オブジェクトの DataView のプロパティを設定する例を次に示します。この例では、DataGrid コントロールを、"CompanyName" という名前の列が含まれる "Suppliers" という名前の DataTable に連結する方法も示します。

 
Private Sub BindDataGrid()
   Dim myDataTable As New DataTable
   ' Insert code to populate a DataTable with data.
   ' Bind DataGrid to DataTable
   DataGrid1.DataSource = myDataTable
End Sub 

Private Sub ChangeRowFilter()
   Dim gridTable As DataTable = CType(dataGrid1.DataSource, DataTable)
   ' Set the RowFilter to display a company names that begin with A through I.
   gridTable.DefaultView.RowFilter = "CompanyName < 'I'"
End Sub

[C#] 
private void BindDataGrid(){
   DataTable myDataTable = new DataTable();
   
   // Insert code to populate a DataTable with data.

   // Bind grid to DataTable.
   dataGrid1.DataSource = myDataTable;
}

private void ChangeRowFilter(){
   DataTable gridTable = (DataTable) dataGrid1.DataSource;
   // Set the RowFilter to display a company names that begin with A through I..
   gridTable.DefaultView.RowFilter = "CompanyName < 'I'";
}

[C++] 
private:
 void BindDataGrid(){
    DataTable* myDataTable = new DataTable();
    
    // Insert code to populate a DataTable with data.

    // Bind grid to DataTable.
    dataGrid1->DataSource = myDataTable;
 }
 
 void ChangeRowFilter(){
    DataTable* gridTable = dynamic_cast<DataTable*> (dataGrid1->DataSource);
    // Set the RowFilter to display a company names that begin with A through I..
    gridTable->DefaultView->RowFilter = S"CompanyName < 'I'";
 }

[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

参照

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