UIHierarchy.SelectDown(vsUISelectionType, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Selects the node immediately below the currently selected node with respect to the tree's current expansion state.
public:
void SelectDown(EnvDTE::vsUISelectionType How, int Count);
public:
void SelectDown(EnvDTE::vsUISelectionType How, int Count);
void SelectDown(EnvDTE::vsUISelectionType How, int Count);
[System.Runtime.InteropServices.DispId(7)]
public void SelectDown (EnvDTE.vsUISelectionType How, int Count);
[<System.Runtime.InteropServices.DispId(7)>]
abstract member SelectDown : EnvDTE.vsUISelectionType * int -> unit
Public Sub SelectDown (How As vsUISelectionType, Count As Integer)
Parameters
Required. A vsUISelectionType constant indicating how the selection is made.
- Count
- Int32
Required. The number of nodes to select down from the current node. Count
is also used for coalescing commands while recording. That is, if you type SHIFT + DOWN ARROW four times, rather than four lines of code emitted, you instead get one line with a Count
value of 4.
- Attributes