Click or drag to resize

unselectAll Method

Unselect all selected objects in the loaded document.

Syntax
JavaScript
function unselectAll();

Parameters

None

Return Value

Type: Boolean

true if operation completed successfully; otherwise, false.

Remarks

This method will unselect any objects which may be selected at the time..

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