ModulePage.InProgress Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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());