Opens an HTML window and loads the document specified by a given URL.
[Visual Basic .NET] |
---|
Public Function NewWindow( _ ByVal Plugin As IAgUiPlugin, _ ByVal Url As String, _ ByVal DialogParams As System.Array _ ) As IAgUiWindow |
[C#] |
---|
public IAgUiWindow NewWindow( IAgUiPlugin Plugin, string Url, System.Array DialogParams ); |
[Managed C++] |
---|
public: IAgUiWindow^ NewWindow( IAgUiPlugin ^ Plugin, String __gc ^ Url, System::Array ^ DialogParams ); |
[Unmanaged C++] |
---|
public: HRESULT NewWindow( IAgUiPlugin * Plugin, BSTR Url, SAFEARRAY * * DialogParams, IAgUiWindow ** ppWindow ); |
[Java] |
---|
public IAgUiWindow newWindow( IAgUiPlugin Plugin, String Url, AgSafeArray DialogParams ); |
- Plugin
- A User Interface plugin object.
- Url
- A URL of the document to display.
- DialogParams
- Optional parameters that can be used to specify an initial size and position of the window. Not currently used.
NewWindow method opens an HTML browser embedded inside the hosting environment and displays the contents of the document using the specified URL.