You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: microsoft-edge/progressive-web-apps/how-to/window-controls-overlay.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ The `env()` CSS function takes a second parameter that's useful for defining the
97
97
98
98
When the title bar is hidden, only the system-critical window controls remain visible (the **Maximize**, **Minimize**, **Close**, and **App Info** icons). This means that there is very little space available for users to move the application window around.
99
99
100
-
You can use the `-webkit-app-region` CSS property to offer more ways for users to drag the app. For example, if your app has its own titlebar, you can turn its titlebar into a window drag handle:
100
+
You can use the `app-region` CSS property to offer more ways for users to drag the app. For example, if your app has its own titlebar, you can turn its titlebar into a window drag handle:
101
101
102
102
```css
103
103
#title-bar {
@@ -106,7 +106,7 @@ You can use the `-webkit-app-region` CSS property to offer more ways for users t
Copy file name to clipboardExpand all lines: microsoft-edge/webview2/concepts/overview-features-apis.md
+107-2Lines changed: 107 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,7 +6,7 @@ ms.author: msedgedevrel
6
6
ms.topic: conceptual
7
7
ms.service: microsoft-edge
8
8
ms.subservice: webview
9
-
ms.date: 06/03/2025
9
+
ms.date: 08/11/2025
10
10
---
11
11
# Overview of WebView2 APIs
12
12
@@ -33,6 +33,7 @@ when adding an h4 heading, add nav link below the h2
33
33
*[Cookies](#cookies)
34
34
*[Image capture](#image-capture)
35
35
*[Control whether the screen capture UI is shown](#control-whether-the-screen-capture-ui-is-shown)
36
+
*[Find](#find)
36
37
*[Downloads](#downloads)
37
38
*[Save as](#save-as)
38
39
*[Configure the security warning when saving a file](#configure-the-security-warning-when-saving-a-file)
@@ -731,6 +732,111 @@ The `ScreenCaptureStarting` event is raised whenever the WebView2 and/or iframe
731
732
---
732
733
733
734
735
+
<!-- ------------------------------ -->
736
+
#### Find
737
+
738
+
The Find API allows you to programmatically control **Find** operations, and enables adding the following functionality to your app:
739
+
* Customize **Find** options, including **Find Term**, **Case Sensitivity**, **Word Matching**, **Match Highlighting**, and **Default UI Suppression**.
740
+
* Find text strings and navigate among them within a WebView2 control.
741
+
* Programmatically initiate **Find** operations, and navigate **Find** results.
742
+
* Suppress the default **Find** UI.
743
+
* Track the status of **Find** operations.
744
+
745
+
There are known issues with the Find API for PDF documents. When you view a PDF document within a WebView2 control, the **Find** feature currently only provides the first index and the number of matches found. For example, if the string occurs three times in a PDF, the UI would say **1/3** and would not support programmatically calling **Next** or **Previous**.
746
+
747
+
We're actively investigating these issues, and we encourage you to report any problems you encounter, by using the [WebView2Feedback](https://github.com/MicrosoftEdge/WebViewFeedback) repo.
0 commit comments