FocusEventArgs
Namespace: Wisej.Web
Assembly: Wisej.Framework (4.1.0.0)
Provides data for the GotFocus and LostFocus events. Since 3.5.18
- C#
- VB.NET
public class FocusEventArgs : EventArgs
Public Class FocusEventArgs
Inherits EventArgs
Constructors
FocusEventArgs(oldFocus, newFocus)
Initializes a new instance of FocusEventArgs.
| Name | Type | Description |
|---|---|---|
| oldFocus | Control | Control that lost the focus. |
| newFocus | Control | Control that received the focus. |
Properties
NewFocus
Control: Returns the controls that received the focus.
OldFocus
Control: Returns the controls that lost the focus.
Used By
| Name | Description |
|---|---|
| FocusEventHandler | Represents the method that handles these events: GotFocus and LostFocus. Since 3.5.18 |