
Indicates that the user has finished editing the item label.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnEditLabelItem (sItemText [as String] nRow [as Integer] nCol [as Integer] /) ) |
Copy Code |
|---|
; React to the user finishing editing the label of a tree node
(defun c:MyForm_MyControl_OnEditLabelItem
(sItemText nRow nCol /)
(princ "OnEditLabelItem(")
(princ sItemText)
(princ ", ")
(princ nRow)
(princ ", ")
(princ nCol)
(princ ")\n")
) |