Returns or sets the caption to be displayed during incrementation in the progress bar as a String. By default, there is no caption (empty string).
// get accessor String rtn = ProgressBar.Caption; // set accessor ProgressBar.Caption = String; |
dim progressbar set progressbar = XSIUIToolkit.ProgressBar progressbar.Maximum = 70 progressbar.Step = 1 progressbar.CancelEnabled = false progressbar.Visible= true for i = 1 to 70 progressbar.Caption = "Amount Incremented" & i progressbar.Increment 1 next |