FocusEventHandler
Wisej.Web.FocusEventHandler
Last updated
Was this helpful?
Wisej.Web.FocusEventHandler
Last updated
Was this helpful?
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.0.0.0)
Represents the method that handles these events: GotFocus and LostFocus.Since 3.5.18
public delegate void FocusEventHandler(Object sender, FocusEventArgs e)
This delegate is not used in Wisej.NET. The GotFocus and LostFocus events are EventHandler to preserve compatibility with existing code.
Developers handling these events can simply check whether the parameter e
is of type FocusEventArgs and retrieve the value by casting the event data argument.
sender
The source of the event.
e
A that contains the event data.