IProgressor Interface

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
Method Hide Hides the progressor.
Read/write property Message The message displayed by the progressor.
Method Show Shows the progressor.
Method 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

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.