ISDBTreeNode::OnFillChildren

From MediaMonkey Wiki
Revision as of 18:11, 21 March 2007 by Jiri (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

CoClass SDBTreeNode, Interface ISDBTreeNode

Property Get/Let OnFillChildren As String


Property description

Name of an event function in ISDBTreeNode::UseScript file that is called when user expands a node (clicks the plus sign). The function is called with one parameter - the node that is about to be expanded.

Example code

Sub FillLyricists( Node)
  Node.HasChildren = false   ' To delete all old children
  ' Add new children
End Sub

Related Topics