PowerTools SPREAD for Windows Forms 8.0J
GetValue メソッド (DefaultSheetDataModel)


モデル内のセルの行インデックス
モデル内のセルの列インデックス
指定した行と列のセルの値を取得します。
構文
'Declaration
 
Public Overrides Function GetValue( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Object
'使用法
 
Dim instance As DefaultSheetDataModel
Dim row As Integer
Dim column As Integer
Dim value As Object
 
value = instance.GetValue(row, column)
public override object GetValue( 
   int row,
   int column
)

パラメータ

row
モデル内のセルの行インデックス
column
モデル内のセルの列インデックス

戻り値の型

セルの書式なしデータを含む Object
Dim dataModel As New FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5)
Dim o As Object
dataModel.SetValue(0, 0, "TestValue")
FpSpread1.ActiveSheet.Models.Data = dataModel
o = dataModel.GetValue(0, 0)
ListBox1.Items.Add(o.ToString())
FarPoint.Win.Spread.Model.DefaultSheetDataModel dataModel = new FarPoint.Win.Spread.Model.DefaultSheetDataModel(5, 5);
object o;
dataModel.SetValue(0, 0, "TestValue");
fpSpread1.ActiveSheet.Models.Data = dataModel;
o = dataModel.GetValue(0, 0);
listBox1.Items.Add(o.ToString());
参照

DefaultSheetDataModel クラス
DefaultSheetDataModel メンバ

 

 


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