Click or drag to resize

PDFViewCtrlIsFinishedRendering Method (Boolean)

checks if the rendering thread has finished or the current visible region has been fully rendered.

Namespace:  pdftron.PDF
Assembly:  pdftron (in pdftron.dll) Version: 255.255.255.255
Syntax
public bool IsFinishedRendering(
	bool visible_region_only
)

Parameters

visible_region_only
Type: SystemBoolean
DFViewCtrl might pre-render invisible regions if the compatibility parameter is set to false when its constructor is called. In this case, the rendering thread might still be ongoing even if the current visible region has been rendered. If visible_region_only parameter is set to true, this function only checks if the visible region has been rendered, regardless if the rendering thread is ongoing. If compatibility parameter is set to true when its constructor is called, this parameter takes no effect.

Return Value

Type: Boolean
true if the rendering thread has finished or the current visible region has been fully rendered, false otherwise.
See Also