Click or drag to resize

Window.ControlNotify Method

X#
Provide a method that is invoked when a control sends a notification to its parent window.

Namespace:  VO
Assembly:  VOGUIClasses (in VOGUIClasses.dll) Version: 2.19
Syntax
 VIRTUAL METHOD ControlNotify(
	oControlNotifyEvent
) AS USUAL CLIPPER
Request Example View Source

Parameters

oControlNotifyEvent (Optional)
Type: Usual
The ControlNotifyEvent object that describes which control sent the notification.

Return Value

Type: Usual
Remarks
Tip Tip
Important! This is a callback method used by X#. Normally, it should not be called in your application code.
This is a general method that is called whenever a common control sends a notification to its parent window. In many cases, a more specific method is invoked in addition to this method in response to the notification. Notifiy codes that are not handled by this method are send to the Control:ParentNotify() method when this method is available.
See Also