PowerTools SPREAD for ASP.NET 8.0J
GetUnboundValue メソッド (SheetView)

行インデックス
列インデックス
指定した行と列のセルの非連結値を取得します。
構文
'Declaration
 
Public Function GetUnboundValue( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As Object
public object GetUnboundValue( 
   int row,
   int column
)

パラメータ

row
行インデックス
column
列インデックス

戻り値の型

セルの値を含むObject。値がない場合はNull
この例では、指定したセルの非連結値を返します。
FarPoint.Web.Spread.SheetView sv;
sv = FpSpread1.ActiveSheetView;
object o;
sv.AddUnboundRows(1, 1);
sv.SetValue(1, 0, 5);
o = sv.GetUnboundValue(1, 0);
Response.Write("The value in the unbound cell is " + o.ToString());
Dim sv As FarPoint.Web.Spread.SheetView
sv = FpSpread1.ActiveSheetView
Dim o As Object
sv.AddUnboundRows(1, 1)
sv.SetValue(1, 0, 5)
o = sv.GetUnboundValue(1, 0)
Response.Write("The value in the unbound cell is " & o.ToString())
参照

SheetView クラス
SheetView メンバ
GetValue メソッド
GetText メソッド

開発者の手引き

Cellクラスを使用

 

 


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