Link Search Menu Expand Document

ProgressBar.StepIt Method

Explanation Take the progress bar one step.
If specify an argument, the progress bar advances to the step position of that numerical value.
Call format var num = ProgressBar1.StepIt( [ num ] )
Return value
Arguments integer num Step position
Specify a value less than or equal to Step property. If omitted, proceed one step.
Exception None
Example of use
    Function func() {
        func1();
        ProgressBar1.StepIt();
        func2();
        ProgressBar1.StepIt();
        func3();
        ProgressBar1.StepIt();
    }
    
Related item Step property