Check if the bar is enabled.

syntaxSyntax:
DlxProgressBar.IsEnabled()

Return Value

Returns true if the progress bar is enabled otherwise returns false.

Example

  Copy codeCopy code
var bar = DlxApp.GetProgressBar();
bar.Show("ProgressBar");
for (var i = 0; i < 100; i++)
{
  bar.StepIt();
  DlxApp.Delay(20);
}

See also