LoadHtml Method (IBrowser)
- Last UpdatedAug 21, 2026
- 1 minute read
Loads given html.
'Declaration
Sub LoadHtml( _
ByVal html As String, _
ByVal baseAddress As String _
)
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.