ModulePage.InProgress Property

Definition

Gets a value indicating whether the progress bar has been started.

public:
 property bool InProgress { bool get(); };
public bool InProgress { get; }
member this.InProgress : bool
Public ReadOnly Property InProgress As Boolean

Property Value

true if the StartProgress(String, MethodInvoker) method was successfully called; otherwise, false.

Examples

The following example writes the value of the InProgress property to the trace listener.

Trace.WriteLine(this.InProgress.ToString());

Applies to