AVEVA OMI Software Developer Kit



Html to load.
Base address. The baseUrl can be used to convert partial path into the full path. For example, the HTML may contain a partial path such as 'img src="logo.gif"'. In that case, the browser engine would not be able to construct the full path of the image unless the baseUrl is provided.
LoadHtml Method (IBrowser)
Loads the given HTML.
Syntax
'Declaration
 
Sub LoadHtml( _
   ByVal html As String, _
   ByVal baseAddress As String _
) 
'Usage
 
Dim instance As IBrowser
Dim html As String
Dim baseAddress As String
 
instance.LoadHtml(html, baseAddress)
void LoadHtml( 
   string html,
   string baseAddress
)
void LoadHtml( 
   String^ html,
   String^ baseAddress
) 

Parameters

html
Html to load.
baseAddress
Base address. The baseUrl can be used to convert partial path into the full path. For example, the HTML may contain a partial path such as 'img src="logo.gif"'. In that case, the browser engine would not be able to construct the full path of the image unless the baseUrl is provided.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also