Skip to content

Commit

Permalink
Added IWebUIWindow.ShowWV
Browse files Browse the repository at this point in the history
  • Loading branch information
salvadordf committed Jun 24, 2024
1 parent da48e7d commit 68698a8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions source/uWebUITypes.pas
Original file line number Diff line number Diff line change
Expand Up @@ -534,6 +534,15 @@ TWebUIEvent = record
/// </remarks>
function ShowBrowser(const content : string; browser : TWebUIBrowser) : boolean;
/// <summary>
/// Show a WebView window using embedded HTML, or a file. If the window is already
/// open, it will be refreshed. Note: Win32 need `WebView2Loader.dll`.
/// </summary>
/// <param name="content">The HTML, URL, Or a local file.</param>
/// <remarks>
/// <para><see href="https://github.com/webui-dev/webui/blob/main/include/webui.h">WebUI source file: /include/webui.h (webui_show_wv)</see></para>
/// </remarks>
function ShowWV(const content : string) : boolean;
/// <summary>
/// Set the window in Kiosk mode (Full screen).
/// </summary>
/// <param name="status">True or False.</param>
Expand Down

0 comments on commit 68698a8

Please sign in to comment.