TreeView for WinForms | ComponentOne
C1.Win.TreeView Namespace / C1TreeViewEditMode Enumeration

In This Topic
    C1TreeViewEditMode Enumeration
    In This Topic
    Specifies how a user starts cell editing in the C1TreeView control.
    Syntax
    'Declaration
     
    
    Public Enum C1TreeViewEditMode 
       Inherits System.Enum
    public enum C1TreeViewEditMode : System.Enum 
    Members
    MemberDescription
    EditOnEnterEditing begins when Enter is pressed while the cell has focus.
    EditOnF2Editing begins when F2 is pressed while the cell has focus. This mode places the selection point at the end of the cell contents.
    EditOnKeystrokeEditing begins when any alphanumeric key is pressed while the cell has focus.
    EditOnKeystrokeOrF2Editing begins when any alphanumeric key or F2 is pressed while the cell has focus.
    EditProgrammaticallyEditing begins only when the C1TreeView.BeginEdit method is called.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             C1.Win.TreeView.C1TreeViewEditMode

    See Also