ObjectDCL Banner

OnNavigateComplete Event

Description

Indicates the navigation to a hyperlink is completed.

Parameters

sUrl
String identifying the URL of the page.

AutoLISP Syntax

Each control that throws this event has its handler that takes this generic form:

CopyCode imageCopy Code
(defun c:FormName_ControlName_OnNavigateComplete 
                 (sUrl [as String] /)
     
)

Applies For

HtmlControl.

Example

CopyCode imageCopy Code
; React to the page being loaded
(princ c:MyForm_MyControl_OnNavigateComplete
                 (sUrl /)
     (princ "OnNavigateComplete(")
     (princ sUrl)
     (princ ")\n")
)