public string Downloading { get; set; }
Public Property Downloading As String
Get
Set
Example function:
function documentViewerDownloading(e) {
var documentViewer = e.target;
//Pretty print the event arguments
var json = JSON.stringify(e.detail, null, 2);
console.log(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "downloading",
"document": "p4450.pdf",
"isFromKeyboard": false,
"downloadType": "pdf"
}
*/
//