Occurs when a TreeView item is being populated with children.
Event ID |
Objects |
---|---|
pbm_tvnitempopulate |
TreeView |
Argument |
Description |
---|---|
handle |
Long by reference (the handle of the TreeView item being populated) |
Long. Return code choices (specified in a RETURN statement):
0 Continue processing
This example displays the name of the TreeView item you are populating in a SingleLineEdit:
TreeViewItem tvi
This.GetItem(handle, tvi)
sle_get.Text = "Populating TreeView item " &
+ String(tvi.Label) + " with children"