|
|
|
|
EndAutomatedProcedure (Function) In french: FinAutomatismeProcédure Stops the current or forthcoming execution of an automatic procedure (defined by the properties of the procedure in the code editor). This automatic procedure can be: - an automatic procedure not run
- a delayed procedure
- a recurring procedure
- a procedure in an independent thread.
// The CheckInput procedure is an automatic delayed procedure called // whenever an edit control is modified. // In the "Whenever the control is modified" code, the automatic procedure // is stopped and restarted manually EndAutomatedProcedure(CheckInput) CheckInput(MySelf)
Syntax
EndAutomatedProcedure([<WLanguage procedure>])
<WLanguage procedure>: Optional procedure name Name of the automatic procedure to stop. If this parameter is not specified, the current procedure is stopped.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|