Window.ControlNotify Method (Typed) | |
Provide a method that is invoked when a control sends a notification to its parent window.
Namespace:
XSharp.VO.SDK
Assembly:
XSharp.VOGUIClasses (in XSharp.VOGUIClasses.dll) Version: 2.19
Syntax VIRTUAL METHOD ControlNotify(
oControlNotifyEvent AS ControlNotifyEvent
) AS USUAL
public virtual Usual ControlNotify(
ControlNotifyEvent oControlNotifyEvent
)
Request Example
View SourceParameters
- oControlNotifyEvent
- Type: ControlNotifyEvent
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