Window.ControlNotify Method | |
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
[ClipperCallingConventionAttribute(new string[] { ... })]
public virtual Usual ControlNotify(
Usual oControlNotifyEvent = default
)
Request Example
View SourceParameters
- oControlNotifyEvent (Optional)
- Type: Usual
The ControlNotifyEvent object that describes which control sent the notification.
Return Value
Type:
UsualRemarks 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