Click or drag to resize

RenderProgressEventArgs Constructor

Constructs a new instance of the RenderProgressEventArgs class. Note that this class is constructed during normal operation of document rendering. There are few cases where client code would have to construct this.

Namespace:  Atalasoft.PdfDoc.Generating.Rendering
Assembly:  Atalasoft.PdfDoc (in Atalasoft.PdfDoc.dll) Version: 11.4.0.9.0.377 (.NET 4.5.2, x86)
Syntax
public RenderProgressEventArgs(
	int currentProgress,
	int total,
	string message
)

Parameters

currentProgress
Type: SystemInt32
The current progress of the document.
total
Type: SystemInt32
The total progress to be made.
message
Type: SystemString
Description of the current work being done.
Examples
RenderProgressEventArgs e = new RenderProgressEventArgs(currentPage, totalPages, "Rendering a page.");
See Also