FlexPivot for WinForms
StartEditing() メソッド
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス > StartEditing メソッド : StartEditing() メソッド
Puts the grid in edit mode and starts editing the current cell.
シンタックス
'宣言
 
Public Overloads Function StartEditing() As System.Boolean
public System.bool StartEditing()

戻り値の型

True if the grid entered edit mode successfully, false otherwise.
解説

If the AllowEditing property is set to true, the control goes into edit mode automatically when the user presses the edit key (F2), the space bar, or any printable character. You may use the StartEditing(Int32,Int32,Char) method to force the control into cell-editing mode.

The StartEditing(Int32,Int32,Char) method forces the control into editing mode even if AllowEditing is set to False. You may also use it to allow editing of fixed cells.

使用例
The code below uses the StartEditing(Int32,Int32,Char) method to keep the grid in edit mode while the user moves the selection (like the .NET DataGrid control):
void _flex_RowColChange(object sender, System.EventArgs e)
{
  _flex.StartEditing();
}
参照

C1FlexGridBase クラス
C1FlexGridBase メンバ
オーバーロード一覧