Click or drag to resize

reload Method

Reload the PdfWebControl instance from server.

Syntax
JavaScript
function reload();

Parameters

None

Return Value

Type: Boolean

true if operation completed successfully; otherwise, false.

Remarks

This method is useful if the PdfWebControl's document is being shared with multiple sessions and has been saved by another user.

Examples
JavaScript
var myApi = new PdfWebControlApi("PdfWebControl1"); // where "PdfWebControl1" is the ID (ClientID) assigned to the PdfWebControl instance
myApi.reload(); //this will reload the PdfWebControl viewer
See Also