We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2b2634 commit 74e7ca0Copy full SHA for 74e7ca0
1 file changed
specs/DragStartingEvent.md specs/DragStarting.mdspecs/DragStartingEvent.md renamed to specs/DragStarting.md
@@ -7,8 +7,10 @@ The WebView2 team has been asked to provide a way to override the default drag d
7
# Examples
8
## DragStarting
9
Users can use `add_DragStarting` on the CompositionController to add an event handler
10
-that is invoked when drag is starting. They can use the event args to start their own
11
-drag or they can just set `Handled` to `FALSE` to ignore the drag.
+that is invoked when drag is starting. They can use the the event args to start their own
+drag. Notably the `Deferral` can be used to execute any async drag logic and call back into
12
+the WebView at a later time. The `Handled` property lets the WebView2 know whether to
13
+exercise its own drag logic or not.
14
15
```C++
16
CHECK_FAILURE(m_compControllerStaging->add_DragStarting(
0 commit comments