FlexPivot for WinForms
ComboBoxEditor プロパティ (C1FlexGridBase)
使用例 

C1.Win.C1FlexGrid.4.5.2 アセンブリ > C1.Win.C1FlexGrid 名前空間 > C1FlexGridBase クラス : ComboBoxEditor プロパティ
Gets a ComboBoxEditor object that provides easy access to properties of the currently active ComboBox editor.
シンタックス
'宣言
 
Public ReadOnly Property ComboBoxEditor As ComboBoxEditor
public ComboBoxEditor ComboBoxEditor {get;}
解説

The ComboBoxEditor object can be used to get and set properties on the currently active ComboBox editor without casting the Editor property.

If no editor is active, or if the editor is not a System.Windows.Forms.ComboBox, these properties return null or -1, and cannot be set.

使用例
The code below shows two equivalent ways of accessing the selected index of the currently active ComboBox editor:
// with the ComboBoxEditor property:
Console.WriteLine("The current combo index is {0}",
    _flex.ComboBoxEditor.SelectedIndex);
            
// without the ComboBoxEditor property:
ComboBox cb = _flex.Editor as ComboBox;
int index = (cb != null) ? cb.SelectedIndex : -1;
Console.WriteLine("The current combo index is {0}",
    index);
参照

C1FlexGridBase クラス
C1FlexGridBase メンバ