JVCL Help:TScheduledEventState

From Project JEDI Wiki
Jump to navigationJump to search
JEDI Visual Component Library Help

Search in JVCL Help

 
Search in all projects
 

Summary

Type used to indicate the state of a scheduled event.

run\JvScheduledEvents.pas


Pascal

 run\JvScheduledEvents.pas
 TScheduledEventState = (
sesNotInitialized,
sesWaiting,
sesTriggered,
sesExecuting,
sesPaused,
sesEnded
);


Members

Members Description
sesNotInitialized The scheduled event has not yet been initialized or was stopped using the Stop method.
sesWaiting The scheduled event is waiting for the scheduled time (either the time as dictated by the schedule or the time of the last snooze request).
sesTriggered The scheduled event has been triggered but is not yet executing (message has been posted to the main thread and will be processed as soon as the application is idle).
sesExecuting The scheduled event is executing.
sesPaused The event will not execute until the schedule is resumed using the Start method.
sesEnded The schedule for the scheduled event has reached its end condition and no snooze requests have been posted.

run\JvScheduledEvents.pas


Description

The TScheduledEventState type is used to indicate the state of a scheduled event. To retrieve the state of an event you can use the State property of a scheduled event.

run\JvScheduledEvents.pas


See Also

TJvEventCollectionItem.State

run\JvScheduledEvents.pas


About

Navigation

no pages or subcategories

run\JvScheduledEvents.pas



Contribute to this help topic

This documentation wiki is based on the collaborative effort of Project JEDI users. Your edits are welcome in order to improve documentation quality: edit this page