Click or drag to resize

DispatcherScheduleAction(Fixed, Action) Method

Schedule an action to be invoked in the future.

Namespace: Demo3D.EventQueue
Assembly: Demo3D.EventQueue (in Demo3D.EventQueue.dll) Version: 19.00.00
Syntax
C#
public Event ScheduleAction(
	Fixed secondsFromNow,
	Action action
)

Parameters

secondsFromNow  Fixed
The duration in seconds before the action should be invoked.
action  Action
The action to be invoked.

Return Value

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