
Indicates that the user expanded a node of the TreeControl.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnItemExpanded (sItemText [as String] Key [as String or Tree Node Handle] /) ) |
Copy Code |
|---|
; React to the tree node that was expanded
(defun c:MyForm_MyControl_OnItemExpanded
(sItemText Key /)
(princ "OnItemExpanded(")
(princ sItemText)
(princ ", ")
(princ Key)
(princ ")\n")
) |