HTMLTaskPane.Navigate(String) Method

Definition

Loads the specified HTML document into the Microsoft Office InfoPath 2003 custom task pane.

public:
 void Navigate(System::String ^ bstrURL);
public void Navigate (string bstrURL);
abstract member Navigate : string -> unit
Public Sub Navigate (bstrURL As String)

Parameters

bstrURL
String

The Uniform Resource Locator (URL) of the HTML document to navigate to.

Examples

In the following example, the Navigate method of the HTMLTaskPaneObject is used to load an HTML document into the custom task pane. The HTML document that it loads is one that is included in the form files of the form template:

public void CustomTaskPaneNavigation()
{
 // Get a reference to the custom task pane. It is always index [0] in the TaskPanes collection.   
 HTMLTaskPane oTaskPane = (HTMLTaskPane)thisXDocument.View.Window.TaskPanes[0];

 // Navigate based on url specified.
 oTaskPane.<span class="label">Navigate</span>("taskpane2.html");
}

Remarks

The Navigate method of the HTMLTaskPaneObject object is one of the methods inherited by the TaskPaneObject object when the type of the task pane is 0, which means that it is the custom task pane.

Note: The Navigate method cannot be called during an OnLoad event because the view is not yet loaded when this event occurs, and task panes are associated with the view.

Applies to