DispatcherScheduleActionAtWithPriority Method |
Schedule an action to be invoked in the future but force it to happen at the start or end of that point in time.
Namespace: Demo3D.EventQueueAssembly: Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 19.00.00
Syntaxpublic Event ScheduleActionAtWithPriority(
Fixed t,
Action action,
DispatcherPriority priority,
Object description
)
Parameters
- t Fixed
- The specific time that the action should be invoked.
- action Action
- The action to be invoked.
- priority DispatcherPriority
- Use long.MinValue to fire event before other events at that time.
Use long.MaxValue to fire event after other events at that time.
- description Object
- An object that describes the action.
Return Value
EventThe future event which, can be canceled.
See Also