PowerTools SPREAD for Windows Forms 8.0J
GetEditor メソッド (SheetView)


セルの行インデックス
セルの列インデックス
このシートの指定したセルの編集に使用するエディタを取得します。
構文
'Declaration
 
Public Overridable Function GetEditor( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As IEditor
'使用法
 
Dim instance As SheetView
Dim row As Integer
Dim column As Integer
Dim value As IEditor
 
value = instance.GetEditor(row, column)
public virtual IEditor GetEditor( 
   int row,
   int column
)

パラメータ

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

戻り値の型

セルの編集に使用されるエディタを含む IEditor オブジェクト
次のサンプルコードでは、このメンバを使用して、指定したセルのエディタを返しています。
FarPoint.Win.Spread.CellType.IEditor ed;
fpSpread1.EditMode = true;
ed = fpSpread1.ActiveSheet.GetEditor(0, 0);
label1.Text = "The editor for the specified cell is a - " + Convert.ToString(ed);
Dim ed As FarPoint.Win.Spread.CellType.IEditor
FpSpread1.EditMode = True
ed = FpSpread1.ActiveSheet.GetEditor(0, 0)
Label1.Text = "The editor for the specified cell is a - " & Convert.ToString(ed)
参照

SheetView クラス
SheetView メンバ

開発者ガイド

セル型

 

 


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