FocusChangeEvent Class |
Namespace: VO
The FocusChangeEvent type exposes the following members.
Name | Description | |
---|---|---|
FocusChangeEvent | Initializes a new instance of the FocusChangeEvent class |
Name | Description | |
---|---|---|
GotFocus |
A logical value determining whether a window has either gained keyboard focus (TRUE) or is about to lose it (FALSE).
| |
Handle |
The pointer to the window where the event occurred
(Inherited from Event.) | |
Message |
A dword representing the Windows API message associated with the given event.
(Inherited from Event.) | |
Window |
An object indicating the window or control in which the event occurred. This is helpful, for example, for distinguishing between similar menu events coming from the same context menu attached to different controls.
(Inherited from Event.) |
Name | Description | |
---|---|---|
hWnd | (Inherited from Event.) | |
lParam | (Inherited from Event.) | |
oWindow | (Inherited from Event.) | |
uMsg | (Inherited from Event.) | |
wParam | (Inherited from Event.) |
1METHOD FocusChange(oFCE) CLASS TopAppWindow 2IF(oFCE:GotFocus) 3Server:RLock() 4ELSE 5Server:Unlock() 6ENDIF