
Indicates that the user is expanding 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_OnItemExpanding (sItemText [as String] Key [as String or Tree Node Handle] /) ) |
Copy Code |
|---|
; React to the tree node being expanded
(defun c:MyForm_MyControl_OnItemExpanding
(sItemText Key /)
(princ "OnItemExpanding(")
(princ sItemText)
(princ ", ")
(princ Key)
(princ ")\n")
) |