Click or drag to resize

DispatcherScheduleAction Method (Fixed, Action, Object)

Schedule an action to be invoked in the future.

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

Parameters

secondsFromNow
Type: Demo3D.EventQueueFixed
The duration in seconds before the action should be invoked.
action
Type: SystemAction
The action to be invoked.
description
Type: SystemObject

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

Return Value

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