Table of Contents
WebView.GiveFocus Event

Occurs when this WebView wish to give up focus.

Syntax
 public event GiveFocusHandler GiveFocus;
Event Data

The event handler receives an argument of type GiveFocusEventArgs containing data related to this event. The following GiveFocusEventArgs property provides information specific to this event.

Name Description
Next Whether focus should be given to the next or the previous element.
Remarks

This event occurs when the focus is already at the last HTML element and user presss TAB key; or when the focus is already at the first HTML element and user presses SHIFT + TAB key. In the first case the Next property of the event argument will be set to true.

See Also