TIB_Process Object
Properties Methods Events

Unit
IB_Process

Declaration
TIB_Process = class(TIB_Component)

Description
This component serves as a base class to components needing an item by item flow. The TIB_Script and TIB_Export are just two examples.

Introduced Public Properties
Executing  Flag which returns whether or not the process is currently executing.
ExecutingAborted  Flag which returns whether or not the process execution was aborted.
ExecutingFailed  Flag which returns whether or not the process execution was successful.
Prepared  Flag to determine if Execution can occur.
Yield  Determines if an Application.ProcessMessages should be called during the execution of the process.

Introduced Public Methods
AbortExecuting   Method to abort the execution of the process.
Execute   Method to begin execution of the process.
Prepare   Method to prepare for the execution of the process.
Unprepare   Method to reverse the preparation for the execution of the process.

Introduced Public Events
AfterExecute  Event notification that execution has ended.
AfterPrepare  The process has just been prepared.
AfterUnprepare  The process has been unprepared.
BeforeExecute  Event notification that execution is about to begin.
BeforePrepare  The process is about to be prepared.