File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,10 @@ The WebView2 team has been asked to provide a way to override the default drag d
7
7
# Examples
8
8
## DragStarting
9
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.
10
+ that is invoked when drag is starting. They can use the the event args to start their own
11
+ 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.
12
14
13
15
``` C++
14
16
CHECK_FAILURE (m_compControllerStaging->add_DragStarting(
You can’t perform that action at this time.
0 commit comments