Share

acedShowHTMLModalWindow Function

C++

bool acedShowHTMLModalWindow(
    HWND owner, 
    const ACHAR* uriOfHtmlPage, 
    bool persistSizeAndPosition = true
);

File

AcHTMLApi.h

Description

This function can be used to launch a modal dialog with the specified URI. The window hosts a browser window which displays the html page.

Parameters

Parameters Description
owner Owner window handle
uriOfHtmlPage URI of the page to be loaded into the palette
persistSizeAndPosition Saves the current size and position of the window if set to true

Returns

true - if OK button is clicked.

false - if CANCEL button is clicked or invalid URI is specified.

Was this information helpful?