IDTSComponentEvents100.FireProgress Method
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.
Raises an event when measurable progress is made by the executable.
public:
void FireProgress(System::String ^ ProgressDescription, int PercentComplete, int ProgressCountLow, int ProgressCountHigh, System::String ^ SubComponent, [Runtime::InteropServices::Out] bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(5)]
public void FireProgress (string ProgressDescription, int PercentComplete, int ProgressCountLow, int ProgressCountHigh, string SubComponent, out bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(5)>]
abstract member FireProgress : string * int * int * int * string * bool -> unit
Public Sub FireProgress (ProgressDescription As String, PercentComplete As Integer, ProgressCountLow As Integer, ProgressCountHigh As Integer, SubComponent As String, ByRef pbFireAgain As Boolean)
Parameters
- ProgressDescription
- String
A String that describes the progress event that is raised.
- PercentComplete
- Int32
An Integer used to indicate how much of the task has completed.
- ProgressCountLow
- Int32
An Integer that contains the low 32-bits of the units completed.
- ProgressCountHigh
- Int32
An Integer that contains the high 32-bits of the units completed.
- SubComponent
- String
A String that contains more detail about the event source.
- pbFireAgain
- Boolean
When this method returns, contains a Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing. A value of false indicates that it should stop firing. This parameter is passed uninitialized.
- Attributes