Click or drag to resize

DispatcherScheduleAction(Fixed, Action, Object) 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,
	Object description
)

Parameters

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

[Missing <param name="description"/> documentation for "M:Demo3D.EventQueue.Dispatcher.ScheduleAction(Demo3D.EventQueue.Fixed,System.Action,System.Object)"]

Return Value

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