FlexGrid for WinForms | ComponentOne
C1.Win.C1FlexGrid Namespace / CellStyle Class / Editor Property

In This Topic
    Editor Property (CellStyle)
    In This Topic
    Gets or sets the custom editor used to edit cells that have this style.
    Syntax
    'Declaration
     
    
    Public Property Editor As Control
    public Control Editor {get; set;}
    Remarks

    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 that have a given CellStyle. 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.

    For details, see the C1FlexGridBase.Editor property.

    See Also