Link Search Menu Expand Document

ProgressBar.AutoStepOff Method

Explanation Stops the automatic progress of the progress bar started by the AutoStep method.
Call format ProgressBar1.AutoStepOff( )
Return value None
Arguments None
Exception None
Example of use
    ProgressBar1.Step = 10;
    ProgressBar1.AutoStep(5);
    ...
    if (...) {
        ProgressBar1.AutoStepOff();
    }
    
Related item AutoStep method