Provides access to members that report progress.
Description
The IProgressorinterface is a generic interface for progressors (for example a progress bar). There are methods to show, step, and hide the progressor and a property to set the message of the progressor.
Members
Name | Description | |
---|---|---|
Hide | Hides the progressor. | |
Message | The message displayed by the progressor. | |
Show | Shows the progressor. | |
Step | Animates or steps the progressor. |
IProgressor.Hide Method
Hides the progressor.
Public Sub Hide ( _
)
public void Hide (
);
Description
This is a generic Hide method for progressors (for example a progress bar).
IProgressor.Message Property
The message displayed by the progressor.
Public Property Message As String
public string Message {get; set;}
Description
This is a generic Message property for progressors (for example a progress bar).
IProgressor.Show Method
Shows the progressor.
Public Sub Show ( _
)
public void Show (
);
Description
This is a generic Show method for progressors (for example a progress bar).
IProgressor.Step Method
Animates or steps the progressor.
Public Sub Step ( _
)
public void Step (
);
Description
This is a generic Step method for progressors (for example a progress bar).
Classes that implement IProgressor
Classes | Description |
---|