Parameter | Description |
---|---|
NavigateData | The tWebNavigateData NavigateData to use |
Procedure SetNavigateData tWebNavigateData NavigateData
Call: | Send SetNavigateData NavigateData |
SetNavigateData sets the passed tWebNavigateData NavigateData into a cWebView by setting a private web-property. Send this if you need to change the tWebNavigateData for a view. Often, this data will be passed into the event or method you are augmenting. If it is not, the data can be accessed using GetNavigateData.
Any time the tWebNavigateData data is passed into a method or event you are augmenting, you should use that passed data and not be calling GetNavigateData. Those methods are OnGetNavigateBackData, OnGetNavigateForwardData, OnNavigateBack, OnNavigateForward and OnNavigateForwardPreFindInit.
Any time the tWebNavigateData data is passed as ByRef, you should be changing that ByRef parameter and not use SetNavigateData. Those methods are OnGetNavigateBackData, OnGetNavigateForwardData and OnNavigateBack. In particular be careful using SetNavigateData as these byref events are the main place where you should be changing this data.