| Unit: |
SDL_statis |
| Class: |
TCrossValidator |
| Declaration: |
property OnCheckAbort: TOnCheckAbortEvent;
{ TOnCheckAbortEvent = procedure (Sender: TObject; var Abort: boolean) of object; } |
The event OnCheckAbort is regularly triggered by the cross validation procedure in order to provide the possibility to abort it. In order to terminate the cross validation the parameter Abort has to be set to TRUE.
| Hint: |
OnCheckAbort can also be used to prevent the program to freeze during cross validation. Insert the statement Application.Processmessages; for this purpose. |
|