Previous Property (Node Object)

           

Returns a reference to the previous sibling of a Node object.

Syntax

object. Previous

The object placeholder represents an object expression that evaluates to an object in the Applies To list.

Remarks

The Child, FirstSibling, LastSibling, Previous, Parent, Next, and Root properties all return a reference to another Node object. Therefore you can simultaneously reference and perform operations on a Node, as follows:

With TreeView1.Nodes(x).Previous
   .Text = "New text"
   .Key = "New key"
   .SelectedImage = 3
End With

You can also set an object variable to the referenced Node, as follows:

Dim NodPrevious As Node
' Get a reference to the node previouus to Node x.
Set NodChild = TreeView1.Nodes(x).Previous
' Use this reference to perform operations on the previous Node.
With nodPrevious
   .Text = "New text"   '  Change the text.
   .Key = "New key"   ' Change key.
   .SelectedImage = 3   ' Change SelectedImage.
End With