Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Sets a description of the process that is currently occurring.
Syntax
public void setText(SysProgressTxt _text, [int _idx])
Run On
Called
Parameters
- _text
Type: SysProgressTxt Extended Data Type
The text that describes what is occurring.
- _idx
Type: int
The bar to set the text for; optional. Only should be used when you have more than one bar.
Examples
static void example(Args _args)
{
SysOperationProgress progress = new SysOperationProgress();
boolean still_work_todo;
while (still_work_todo)
{
progress.incCount();
progress.setText("This is what I do");
do_the_job();
}
}
See Also
SysOperationProgressBase Class
SysOperationProgressBase.incCount Method