Provides access to members that report progress in stepped increments with checkmarks.
Members
| Name | Description | |
|---|---|---|
|  | AddCheck | Adds a field that a checkmark can be added to. | 
|  | Hide | Hides the progressor. | 
|  | HideCheck | Hides the checkmark. | 
|  | MaxRange | The maximum range of the progression. | 
|  | Message | The message displayed by the progressor. | 
|  | MinRange | The minimum range of the progression. | 
|  | OffsetPosition | Offsets the position of the progression. | 
|  | Position | The current position of the progression. | 
|  | Show | Shows the progressor. | 
|  | ShowCheck | Displays the checkmark. | 
|  | Step | Animates or steps the progressor. | 
|  | StepValue | The step increment of the progression. | 
ICheckProgressor.AddCheck Method
Adds a field that a checkmark can be added to.
Public Sub AddCheck ( _
    ByVal Index As Integer, _
    ByVal msg As String _
)
public void AddCheck (
    int Index,
    string msg
);
Description
Adds a checkmark at the specified index with the specified message.
ICheckProgressor.HideCheck Method
Hides the checkmark.
Public Sub HideCheck ( _
    ByVal Index As Integer _
)
public void HideCheck (
    int Index
);
Description
Hides the checkmark at the specified index. Use the ShowCheck method to show the checkmark.
ICheckProgressor.ShowCheck Method
Displays the checkmark.
Public Sub ShowCheck ( _
    ByVal Index As Integer _
)
public void ShowCheck (
    int Index
);
Description
Shows the checkmark at the specified index. Use the HideCheck method to hide the checkmark.
Inherited Interfaces
| Interfaces | Description | 
|---|---|
| IStepProgressor | Provides access to members that report progress in stepped increments. | 
| IProgressor | Provides access to members that report progress. | 
Classes that implement ICheckProgressor
| Classes | Description | 
|---|
Remarks
Used the ICheckProgressor interface to report progress on the step progress bar in stepped increments with checkmarks.