PowerTools SPREAD for Windows Forms 8.0J
EditingControl プロパティ (SpreadView)


アクティブ セルを編集するコントロールを取得します。コントロールが編集モードでない場合は Null が返されます。
構文
public Control EditingControl {get;}
'Declaration
 
Public ReadOnly Property EditingControl As Control
 
'使用法
 
Dim instance As SpreadView
Dim value As Control
 
value = instance.EditingControl

プロパティ値

エディタ コントロールを含むControlオブジェクト
解説

このプロパティが使用できるのは実行時のみです。

次のサンプルコードは、EditingControlプロパティを設定します。
FarPoint.Win.Spread.SpreadView sv = fpSpread1.GetRootWorkbook();
sv.Sheets[0].Cells[0, 0].CellType = new FarPoint.Win.Spread.CellType.DateTimeCellType();
sv.EditMode = true;
listBox1.Items.Add("EditingControl = " + sv.EditingControl.ToString());
Dim sv As FarPoint.Win.Spread.SpreadView = FpSpread1.GetRootWorkbook
sv.Sheets(0).Cells(0, 0).CellType = New FarPoint.Win.Spread.CellType.DateTimeCellType()
sv.EditMode = True
ListBox1.Items.Add("EditingCOntrol = " & sv.EditingControl.ToString)
参照

SpreadView クラス
SpreadView メンバ

開発者ガイド

編集モード

 

 


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