ISDBTreeNode::OnFillChildren

From MediaMonkey Wiki
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