UIHierarchy.DoDefaultAction Method

In the hierarchy, performs the same action as if the user had double-clicked or pressed ENTER.

Namespace:  EnvDTE
Assembly:  EnvDTE (in EnvDTE.dll)

Syntax

'Declaration
Sub DoDefaultAction
void DoDefaultAction()
void DoDefaultAction()
abstract DoDefaultAction : unit -> unit 
function DoDefaultAction()

Examples

Sub DoDefaultActionExample()
   Dim UIH As UIHierarchy = _
     DTE.Windows.Item(Constants.vsWindowKindMacroExplorer).Object
   Dim UIHItem As UIHierarchyItem = UIH.GetItem("Macros\Samples")

   UIHItem.Select(vsUISelectionType.vsUISelectionTypeSetCaret)
   If UIHItem.IsSelected = False Then
      If UIH.UIHierarchyItems.Expanded = True Then
         MsgBox("Node is expanded.")
      Else
         MsgBox("Node is not expanded.")
      End If
   End If
   UIH.SelectDown(vsUISelectionType.vsUISelectionTypeSelect, 2)
   UIH.DoDefaultAction()
   UIH.SelectDown(vsUISelectionType.vsUISelectionTypeSelect, 1)
   UIH.SelectUp(vsUISelectionType.vsUISelectionTypeExtend, 1)
End Sub

.NET Framework Security

See Also

Reference

UIHierarchy Interface

EnvDTE Namespace

Other Resources

How to: Manipulate Tree Views by Using UIHierarchy