PowerTools SPREAD for Windows Forms 8.0J
GetDataView メソッド (IDataSourceSupport)


DataView を再作成するかどうか。
DataViewオブジェクトを取得します。
構文
'Declaration
 
Function GetDataView( _
   ByVal create As Boolean _
) As DataView
'使用法
 
Dim instance As IDataSourceSupport
Dim create As Boolean
Dim value As DataView
 
value = instance.GetDataView(create)
DataView GetDataView( 
   bool create
)

パラメータ

create
DataView を再作成するかどうか。

戻り値の型

データ テーブルのビューを含む DataView オブジェクト
次のサンプルコードは、DataViewオブジェクト内のテーブルの名前を返します。
FarPoint.Win.Spread.Model.IDataSourceSupport dss ;
DataTable dt = new DataTable("Testing");
DataView dv;
dt.Columns.Add("Number");
dt.Columns.Add("Letter");
dt.Rows.Add(new Object[] {"1", "One"});
dt.Rows.Add(new Object[] {"2", "Two"});
dss = (FarPoint.Win.Spread.Model.IDataSourceSupport)fpSpread1.ActiveSheet.Models.Data;
fpSpread1.DataSource = dt;
dv = dss.GetDataView(false);
label1.Text = "The name of the table in the data view is " + dv.Table.ToString();
Dim dss As FarPoint.Win.Spread.Model.IDataSourceSupport
Dim dt As New DataTable("Testing")
Dim dv As DataView
dt.Columns.Add("Number")
dt.Columns.Add("Letter")
dt.Rows.Add(New Object() {"1", "One"})
dt.Rows.Add(New Object() {"2", "Two"})
dss = FpSpread1.ActiveSheet.Models.Data
FpSpread1.DataSource = dt
dv = dss.GetDataView(False)
Label1.Text = "The data view table is " & dv.Table().ToString()
参照

IDataSourceSupport インタフェース
IDataSourceSupport メンバ

 

 


© 2004-2015, GrapeCity inc. All rights reserved.