Set the form field highlighting mode in the PdfWebControl instance.
Syntax
function setFormHighlight(showHighlights);Parameters
showHighlights
Type: Boolean If true, the form fields will be highlighted in the PDF being viewed. If false, the form fields will not be highlighted in the PDF being viewed.Return Value
Type: Boolean
Returns true if successful. Returns false if fails.
Remarks
This method will always return true.
Examples
var myApi = new PdfWebControlApi("PdfWebControl1"); // where "PdfWebControl1" is the ID (ClientID) assigned to the PdfWebControl instance myApi.setFormHighlight(true); //highlight all the form fields.