DocumentViewerClientEventsPrinted Property

Gets or sets the client-side event raised when printing is completed. The value should be a valid JavaScript function name which is accessible on the host page. Function names should be specified without parentheses like "FunctionName" or "Namespace.FunctionName".

Definition

Namespace: GleamTech.DocumentUltimate.AspNet.UI
Assembly: GleamTech.DocumentUltimate (in GleamTech.DocumentUltimate.dll) Version: 7.1.5
C#
public string Printed { get; set; }

Property Value

String

Example

Example function:

JavaScript
function documentViewerPrinted(e) { 
    var documentViewer = e.target;

    //Pretty print the event arguments
    var json = JSON.stringify(e.detail, null, 2);

    console.log(json);
}

//SAMPLE OUTPUT:
/*
{
  "eventName": "printed",
  "document": "p4450.pdf",
  "totalPages": 91
}
*/
//

See Also