Skip to content

Commit d067eec

Browse files
committed
backticks, del 'Experimental'
1 parent 33e7b0a commit d067eec

1 file changed

Lines changed: 27 additions & 24 deletions

File tree

  • microsoft-edge/webview2/release-notes

microsoft-edge/webview2/release-notes/index.md

Lines changed: 27 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -135,9 +135,9 @@ This issue stems from the fact that our WPF control uses the WPF HwndHost to hos
135135
The WebView2Find API allows you to programmatically control **Find** operations, and enables adding the following functionality to your app:
136136
* Customize **Find** options, similar to **Ctrl+F** in Microsoft Edge.
137137
* Find text strings and navigate among them within a WebView2 control.
138-
* Programmatically initiate Find operations, and navigate **Find** results.
138+
* Programmatically initiate **Find** operations, and navigate **Find** results.
139139
* Suppress the default **Find** UI.
140-
* Track the status of Find operations, indicating completion, match count changes, and match index changes.
140+
* Track the status of **Find** operations, indicating completion, changes of match count, and changes of match index.
141141

142142
There are known issues with the WebView2Find API for PDF documents. When you view a PDF document within a WebView2 control, the **Find** feature currently only provides the number of matches found, and the first index.<!-- todo: clarify "index" --> We are actively investigating these issues, and we encourage you to report any problems you encounter, by using the [WebView2Feedback](https://github.com/MicrosoftEdge/WebViewFeedback) repo.
143143

@@ -231,47 +231,50 @@ There are known issues with the WebView2Find API for PDF documents. When you vi
231231
<!-- ---------- -->
232232
###### Override the default drag and drop behavior (DragStarting API)
233233

234-
Override the default drag drop behavior when running in visual hosting mode. The `DragStarting` event allows your app to know when a drag is initiated in WebView2, and provides the state that's necessary to override the default WebView2 drag operation with your own logic.
234+
The `DragStarting` API overrides the default drag and drop behavior when running in visual hosting mode. The `DragStarting` event notifies your app when the user starts a drag operation in the WebView2, and provides the state that's necessary to override the default WebView2 drag operation with your own logic.
235235

236-
You can use `add_DragStarting`<!-- todo: reword to apply to .NET & WinRT as well --> on the `CompositionController` to add an event handler that's invoked when the drag operation is starting. You can use the event args to start your own drag operation. The `Deferral` can be used to execute any async drag logic and call back into the WebView at a later time. The `Handled` property lets the WebView2 know whether to exercise its own drag logic.
236+
* Use `DragStarting` on the `CoreWebView2CompositionController` to add an event handler that's invoked when the drag operation is starting.
237+
* Use `CoreWebView2DragStartingEventArgs` to start your own drag operation.
238+
* Use the `GetDeferral` method to execute any async drag logic and call back into the WebView at a later time.
239+
* Use the `Handled` property to let the WebView2 know whether to use its own drag logic.
237240

238241
##### [.NET/C#](#tab/dotnetcsharp)
239242

240243
<!-- todo -->
241244

242245
These APIs are forthcoming.
243246

244-
* `CoreWebView2ExperimentalCompositionController` Class
245-
* CoreWebView2ExperimentalCompositionController.DragStarting Event
247+
* `CoreWebView2CompositionController` Class
248+
* `CoreWebView2CompositionController.DragStarting` Event
246249

247-
* CoreWebView2ExperimentalCompositionControllerInterop Class
248-
* CoreWebView2ExperimentalCompositionControllerInterop.DragStarting Event
250+
* `CoreWebView2CompositionControllerInterop` Class
251+
* `CoreWebView2CompositionControllerInterop.DragStarting` Event
249252

250-
* CoreWebView2ExperimentalDragStartingEventArgs Class
251-
* CoreWebView2ExperimentalDragStartingEventArgs.AllowedDropEffects Property
252-
* CoreWebView2ExperimentalDragStartingEventArgs.Data Property
253-
* CoreWebView2ExperimentalDragStartingEventArgs.Handled Property
254-
* CoreWebView2ExperimentalDragStartingEventArgs.Position Property
255-
* CoreWebView2ExperimentalDragStartingEventArgs.GetDeferral Method
253+
* `CoreWebView2DragStartingEventArgs` Class
254+
* `CoreWebView2DragStartingEventArgs.AllowedDropEffects` Property
255+
* `CoreWebView2DragStartingEventArgs.Data` Property
256+
* `CoreWebView2DragStartingEventArgs.Handled` Property
257+
* `CoreWebView2DragStartingEventArgs.Position` Property
258+
* `CoreWebView2DragStartingEventArgs.GetDeferral` Method
256259

257260
##### [WinRT/C#](#tab/winrtcsharp)
258261

259262
<!-- todo -->
260263

261264
These APIs are forthcoming.
262265

263-
* CoreWebView2ExperimentalCompositionController Class
264-
* CoreWebView2ExperimentalCompositionController.DragStarting Event
266+
* `CoreWebView2CompositionController` Class
267+
* `CoreWebView2CompositionController.DragStarting` Event
265268

266-
* CoreWebView2ExperimentalCompositionControllerInterop Class
267-
* CoreWebView2ExperimentalCompositionControllerInterop.DragStarting Event
269+
* `CoreWebView2CompositionControllerInterop` Class
270+
* `CoreWebView2CompositionControllerInterop.DragStarting` Event
268271

269-
* CoreWebView2ExperimentalDragStartingEventArgs Class
270-
* CoreWebView2ExperimentalDragStartingEventArgs.AllowedDropEffects Property
271-
* CoreWebView2ExperimentalDragStartingEventArgs.Data Property
272-
* CoreWebView2ExperimentalDragStartingEventArgs.Handled Property
273-
* CoreWebView2ExperimentalDragStartingEventArgs.Position Property
274-
* CoreWebView2ExperimentalDragStartingEventArgs.GetDeferral Method
272+
* `CoreWebView2DragStartingEventArgs` Class
273+
* `CoreWebView2DragStartingEventArgs.AllowedDropEffects` Property
274+
* `CoreWebView2DragStartingEventArgs.Data` Property
275+
* `CoreWebView2DragStartingEventArgs.Handled` Property
276+
* `CoreWebView2DragStartingEventArgs.Position` Property
277+
* `CoreWebView2DragStartingEventArgs.GetDeferral` Method
275278

276279
##### [Win32/C++](#tab/win32cpp)
277280

0 commit comments

Comments
 (0)