WritingProgressChangedEventArgs Constructor
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.
Initializes a new instance of the WritingProgressChangedEventArgs class.
public:
WritingProgressChangedEventArgs(System::Windows::Documents::Serialization::WritingProgressChangeLevel writingLevel, int number, int progressPercentage, System::Object ^ state);
public WritingProgressChangedEventArgs (System.Windows.Documents.Serialization.WritingProgressChangeLevel writingLevel, int number, int progressPercentage, object state);
new System.Windows.Documents.Serialization.WritingProgressChangedEventArgs : System.Windows.Documents.Serialization.WritingProgressChangeLevel * int * int * obj -> System.Windows.Documents.Serialization.WritingProgressChangedEventArgs
Public Sub New (writingLevel As WritingProgressChangeLevel, number As Integer, progressPercentage As Integer, state As Object)
Parameters
- writingLevel
- WritingProgressChangeLevel
An enumeration value that specifies the scope of the progress changed event such as for an entire multiple document sequence, a single document, or a single page.
- number
- Int32
Based on the scope defined by writingLevel
, the number of documents or the number of pages that have been written.
- progressPercentage
- Int32
The percentage of data that has been written.
- state
- Object
The user-supplied object that identifies the write operation.
Remarks
The user-supplied state
parameter is the object passed to WriteAsync method that identifies the asynchronous write operation.
Applies to
.NET