ISDBTree::CurrentNode

From MediaMonkey Wiki
Revision as of 23:19, 12 February 2011 by Peke (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CoClass SDBTree, Interface ISDBTree

Property Get/Let CurrentNode As ISDBTreeNode


Property description

Gets or sets the current tree node.

To avoid object errors during runtime, you should always verify the object is valid before using or referencing it.


Function Foo
  If Not (SDB.MainTree.CurrentNode Is Nothing) Then
  	'do whatever here
  End If
End Function