Xceed Grid for WinForms v4.3 Documentation
Xceed.Grid.v4.3 Assembly / Xceed.Grid Namespace / Cell Class / EnteringEdit Event


In This Topic
    EnteringEdit Event
    In This Topic
    Raised before editing a cell.
    Syntax
    'Declaration
     
    <DescriptionAttribute("Raised before editing a cell.")>
    <CategoryAttribute("Data")>
    Public Event EnteringEdit As EnteringEditEventHandler
    'Usage
     
    Dim instance As Cell
    Dim handler As EnteringEditEventHandler
     
    AddHandler instance.EnteringEdit, handler
    [Description("Raised before editing a cell.")]
    [Category("Data")]
    public event EnteringEditEventHandler EnteringEdit
    Event Data

    The event handler receives an argument of type EnteringEditEventArgs containing data related to this event. The following EnteringEditEventArgs properties provide information specific to this event.

    PropertyDescription
    (Inherited from System.ComponentModel.CancelEventArgs)
    Gets or sets the Xceed.Grid.Editors.CellEditorManager that will be used to edit the content of the cell.  
    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