DAUntilNotifier Class

The DAUntilNotifier class represents the event notifier used to generate a replacement behavior for another behavior when an event occurs. It is used with the DAStatics function UntilNotify.

DAUntilNotifier Functions

NotifyCreates a new DABehavior in response to an event.

Notify

DAUntilNotifier Class

Creates a new DABehavior in response to an event. You must implement this function yourself. This function will be called by the system when UntilNotify is called.

Syntax

untilNotiferObj.Notify( eventData, curRunningBvr, curView )

Parameters

eventData
DABehavior object that contains any data produced by the event itself.
curRunningBvr
DABehavior object that specifies the current running behavior.
curView
DAView object that specifies the current view. You can access the view through the View property in DAViewerControl.

Return Value

Returns the new DABehavior object that is returned to the DAStatics UntilNotify function when the specified event occurs.

Remarks

This function is called when the event specified in the UntilNotify function occurs. The eventData and curRunningBvr parameters specify the state of the event and the current running behavior and can be used to determine how to create the new behavior.


Top of Page Top of Page
© 2000 Microsoft and/or its suppliers. All rights reserved. Terms of Use.