Click or drag to resize

MultiMediaContainer.Dispatch Method

X#
Provide the prototype dispatcher for events within the system when the control has focus, routing various events to their appropriate event handlers.

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

Parameters

oEvent (Optional)
Type: Usual
The event to be handled.

Return Value

Type: Usual
A numeric value representing the event handler that handled the event.
Remarks
Tip Tip
Important! This is a callback method used by X#. Normally, it should not be called in your application code.
MultiMediaContainer:Dispatch() serves as an internal callback method, dispatching events to various event handlers. It should never be necessary to call this method directly. Instead you should write your own Dispatch() method for derived classes, if you want to handle additional events. Usually the derived class Dispatch() method should call SUPER:Dispatch() to support the inherited event handling.
See Also