Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / Cell Class / CellEditorManager Property


In This Topic
    CellEditorManager Property (Cell)
    In This Topic
    Gets or sets the Xceed.Grid.Editors.CellEditorManager that will be used to edit the content of the cell.
    Syntax
    'Declaration
     
    <BrowsableAttribute(False)>
    <DesignerSerializationVisibilityAttribute(DesignerSerializationVisibility.Hidden)>
    Public Property CellEditorManager As CellEditorManager
    'Usage
     
    Dim instance As Cell
    Dim value As CellEditorManager
     
    instance.CellEditorManager = value
     
    value = instance.CellEditorManager
    [Browsable(false)]
    [DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
    public CellEditorManager CellEditorManager {get; set;}

    Property Value

    A reference to a Xceed.Grid.Editors.CellEditorManager that will be used to edit the content of the cell. By default, DefaultCellEditorManager.
    Remarks

    If the CellEditorManager property has not been explicitly set, the parent column's Column.CellEditorManager will be used. If the parent column's CellEditorManager property has not been explicitly set, the default CellEditorManager for the cell's datatype will be used.

    Cell/Column Datatype Default CellEditorManager
    String Xceed.Grid.Editors.TextEditor
    Boolean Xceed.Grid.Editors.CheckBoxEditor
    DateTime Xceed.Grid.Editors.DateEditor
    Image None
    Numeric Xceed.Grid.Editors.NumericEditor

    Requirements

    Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

    See Also