ISDBTreeNode::OnFillChildren
From MMWiki
CoClass SDBTreeNode, Interface ISDBTreeNode
Property Get/Let OnFillChildren As String
[edit]
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.
[edit]
Example code
Sub FillLyricists( Node) Node.HasChildren = false ' To delete all old children ' Add new children End Sub
[edit]
