From 68698a847257ae939ae9a993e686e562fea8923b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Salvador=20D=C3=ADaz=20Fau?= Date: Mon, 24 Jun 2024 12:59:32 +0200 Subject: [PATCH] Added IWebUIWindow.ShowWV --- source/uWebUITypes.pas | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/uWebUITypes.pas b/source/uWebUITypes.pas index 60330d5..3734adc 100644 --- a/source/uWebUITypes.pas +++ b/source/uWebUITypes.pas @@ -534,6 +534,15 @@ TWebUIEvent = record /// function ShowBrowser(const content : string; browser : TWebUIBrowser) : boolean; /// + /// 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`. + /// + /// The HTML, URL, Or a local file. + /// + /// WebUI source file: /include/webui.h (webui_show_wv) + /// + function ShowWV(const content : string) : boolean; + /// /// Set the window in Kiosk mode (Full screen). /// /// True or False.