ComponentOne FlexPivot for WinForms
C1.Win.FlexPivot.4.5.2 Assembly / C1.Win.FlexPivot Namespace / C1FlexPivotGrid Class / ChangeEdit Event

In This Topic
    ChangeEdit Event (C1FlexPivotGrid)
    In This Topic
    Fires in edit mode, after the contents of the editor change.
    Syntax
    'Declaration
     
    Public Event ChangeEdit As EventHandler
    public event EventHandler ChangeEdit
    Remarks

    This event fires while the grid is in edit mode and the contents of the editor change. This may be caused by the user typing into the editor or selecting a new item in a drop down list.

    When this event fires, the new editor content has not been applied to the grid cell yet. You may check the new content using the C1.Win.C1FlexGrid.C1FlexGridBase.Editor property.

    Example
    The code below shows a message when the text being edited contains more than 10 characters:
    See Also