Click or drag to resize

getCustomData Method

Gets the custom data for the current document in the PdfWebControl instance.

Syntax
JavaScript
function getCustomData();

Parameters

None

Return Value

Type: String

Returns the custom data of the document in this PdfWebControl instance.

Examples
JavaScript
var myApi = new PdfWebControlApi("PdfWebControl1"); // where "PdfWebControl1" is the ID (ClientID) assigned to the PdfWebControl instance
window.alert("My Custom Data Is: " + myApi.getCustomData());
See Also