interface ICoreWebView2MoveFocusRequestedEventArgs
Note
This reference is no longer being maintained. For the latest API reference, see WebView2 API Reference.
interface ICoreWebView2MoveFocusRequestedEventArgs
: public IUnknown
Event args for the MoveFocusRequested event.
Summary
Members | Descriptions |
---|---|
get_Handled | Indicate whether the event has been handled by the app. |
get_Reason | The reason for WebView to fire the MoveFocus Requested event. |
put_Handled | Set the Handled property. |
Members
get_Handled
Indicate whether the event has been handled by the app.
public HRESULT get_Handled(BOOL * value)
If the app has moved the focus to its desired location, it should set Handled property to TRUE. When Handled property is false after the event handler returns, default action will be taken. The default action is to try to find the next tab stop child window in the app and try to move focus to that window. If there is no other such window to move focus to, focus will be cycled within the WebView's web content.
get_Reason
The reason for WebView to fire the MoveFocus Requested event.
public HRESULT get_Reason(COREWEBVIEW2_MOVE_FOCUS_REASON * value)
put_Handled
Set the Handled property.
public HRESULT put_Handled(BOOL value)