
Indicates the navigation to a hyperlink is completed.
Each control that throws this event has its handler that takes this generic form:
Copy Code |
|---|
(defun c:FormName_ControlName_OnNavigateComplete (sUrl [as String] /) ) |
Copy Code |
|---|
; React to the page being loaded
(princ c:MyForm_MyControl_OnNavigateComplete
(sUrl /)
(princ "OnNavigateComplete(")
(princ sUrl)
(princ ")\n")
) |