Enabling the Edit mode

A navigation path can be edited by using the AutoComplete functionality. By default, editing is disabled (set to false). If the IsEnableEditMode Boolean property is set to True, then editing will be enabled.

  • C#
  • HierarchyNavigator hierarchyNavigator = new HierarchyNavigator();
    
    hierarchyNavigator.IsEnableEditMode = true;

    Enabling-the-Edit-mode_images1