FlexPivot for WinForms
Editor プロパティ (RowCol)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > RowCol クラス : Editor プロパティ
Gets or sets the custom editor used to edit cells in this column.
シンタックス
'宣言
 
Public Overridable Property Editor As System.Windows.Forms.Control
public virtual System.Windows.Forms.Control Editor {get; set;}
解説

The grid provides several built-in editors that are automatically selected based on the properties of the cell being edited.

This property allows you to use external editors when editing values in a given column. Any control can be used as an external editor, but to achieve complete integration with the grid, the external editor should implement the IC1EmbeddedEditor interface.

You can associate external editors with columns at design time (using the grid's Column Editor) or at run time, by setting this property.

使用例

The code below creates a C1DateEdit control and assigns it to the Editor property of a grid column. The control will be used to edit cells on this column instead of the default System.Windows.Forms.DateTimePicker control.

All controls in the C1Input library implement the IC1EmbeddedEditor interface and can be used as grid editors without any extra code.

// create C1DateEdit control (included with C1Input)
C1DateEdit dateEdit = new C1DateEdit();
            
// use the new control as an editor for a grid column
_flex.Cols[1].DataType = typeof(DateTime);
_flex.Cols[1].Editor = c1DateEdit;
参照

RowCol クラス
RowCol メンバ