ISDBTreeNode::OnFillChildren: Difference between revisions

From MediaMonkey Wiki
Jump to navigation Jump to search
No edit summary
 
(No difference)

Latest revision as of 18:11, 21 March 2007

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