Click or drag to resize

DispatcherScheduleActionAt Method

Schedule an action to be invoked in the future.

Namespace:  Demo3D.EventQueue
Assembly:  Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 10.0.0.0 (10.0.0.0)
Syntax
C#
public Event ScheduleActionAt(
	Fixed t,
	Action action
)

Parameters

t
Type: Demo3D.EventQueueFixed
The specific time that the action should be invoked.
action
Type: SystemAction
The action to be invoked.

Return Value

Type: Event
The future event which, can be canceled.
See Also