HTMLDocumentField.Navigate
Syntax variant: By URL
Syntax:
Parameters:
<URL> (required)
URL of the resource that will be loaded into the control.
Syntax variant: By metadata object
Syntax:
Parameters:
<Template> (required)
HTML document template to which the control should navigate.
Description:
Availability:
Note:
Example:
// there is a HTMLDocumentField1 control of "HTMLDocumentField" type // in the form Procedure OnOpen() // ... // for the "by URL" method option: Controls.HTMLDocumentField1.Navigate("www.1c.ru"); // ... EndProcedure |