Click or drag to resize

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.EventQueue
Assembly:  Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 15.0.2.11458
Syntax
C#
public Event ScheduleActionAtWithPriority(
	Fixed t,
	Action action,
	DispatcherPriority priority,
	Object description
)

Parameters

t
Type: Demo3D.EventQueueFixed
The specific time that the action should be invoked.
action
Type: SystemAction
The action to be invoked.
priority
Type: Demo3D.EventQueueDispatcherPriority
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
Type: SystemObject
An object that describes the action.

Return Value

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