MESCIUS SPREAD for Windows Forms 15.0J
GetEditor メソッド (SheetView)
使用例 

セルの行インデックス
セルの列インデックス
このシートの指定したセルの編集に使用するエディタを取得します。
構文
'宣言
 
Public Overridable Function GetEditor( _
   ByVal row As Integer, _
   ByVal column As Integer _
) As IEditor
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 メンバ

開発者ガイド

セル型

 

 


© MESCIUS inc. All rights reserved.