MESCIUS SPREAD for Windows Forms 15.0J
FieldsEditorFocusCursorPosition 列挙体
使用例 使用例 

編集コントロールがフォーカスを受け取るときのポインタの位置を指定します。
構文
'宣言
 
Public Enum FieldsEditorFocusCursorPosition 
   Inherits System.Enum
public enum FieldsEditorFocusCursorPosition : System.Enum 
メンバ
メンバ解説
Endテキストを選択せずに、ポインタをコントロールのテキストの末尾に配置します。
FirstInputPositionテキストを選択せずに、ポインタをコントロール内の 最初の入力位置に配置します。
Inherit位置はエディタのタイプと選択ポリシーによって決定されることを指定します。
MouseLocationテキストを選択せずにポインタをポインタデバイスの位置に 配置します。
SelectAllポインタをコントロールのテキストの先頭に配置します。
SelectFieldOfMouseLocationポインタをポインタデバイスの位置に配置し、入力フィールドを選択します。
使用例
次のサンプルコードは、FieldsEditorFocusCursorPosition 列挙体を使用します。
GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType inputcell = new GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType();
inputcell.FocusPosition = GrapeCity.Win.Spread.InputMan.CellType.FieldsEditorFocusCursorPosition.FirstInputPosition;
inputcell.TabAction = GrapeCity.Win.Spread.InputMan.CellType.TabAction.Field;
fpSpread1.Sheets[0].Cells[0, 0].CellType = inputcell;
Dim inputcell As New GrapeCity.Win.Spread.InputMan.CellType.GcDateTimeCellType
inputcell.FocusPosition = GrapeCity.Win.Spread.InputMan.CellType.FieldsEditorFocusCursorPosition.FirstInputPosition
inputcell.TabAction = GrapeCity.Win.Spread.InputMan.CellType.TabAction.Field
fpSpread1.Sheets(0).Cells(0, 0).CellType = inputcell
継承階層

System.Object
   System.ValueType
      System.Enum
         GrapeCity.Win.Spread.InputMan.CellType.FieldsEditorFocusCursorPosition

参照

GrapeCity.Win.Spread.InputMan.CellType 名前空間

 

 


© MESCIUS inc. All rights reserved.