Link Search Menu Expand Document

ProgressBar.AutoStep Method

Explanation Starts the automatic progress of the progress bar.

It is used when you want to automatically advance steps at regular intervals without advancing steps with the StepIt method.
For sec, specify the time until the step reaches the maximum value specified by the Step property.
For example, if the Step property is 10, if you specify 1 (second), it will advance 10 steps per second.

Calling the a href="/package/extension4/maskedit/methods/autostepoff">AutoStepOff</a> method will stop auto-progress.
Call format ProgressBar1.AutoStep( sec [, flag ] )
Return value None
Arguments Number sec Time (seconds) until the step reaches the maximum value
It can be specified in 0.1 second increments. Make sure that one step does not take less than 0.1 seconds.
boolean flag If $TRUE is specified, the >Timer event will be generated for each step.
Exception None
Example of use
    ProgressBar1.Step = 10;
    ProgressBar1.AutoStep(5);
    
Related item Step property
AutoStepOff, StepIt methods
Timer event