public string Previewing { get; set; }
Public Property Previewing As String
Get
Set
Example function:
function fileManagerPreviewing(sender, e) {
var fileManager = sender;
//Pretty print the event arguments
var json = JSON.stringify(e, null, 2);
alert(json);
/*
//Optionally displaying a message to the user when canceling
e.cancelMessage = e.eventName + " event is canceled!";
//Canceling a before event (stops the corresponding action):
return false;
*/
}
//SAMPLE OUTPUT:
/*
{
"eventName": "previewing",
"item": {
"itemType": "File",
"name": "DOCX Document.docx",
"fullPath": "[Root Folder 1]:\\DOCX Document.docx",
"extension": "docx",
"dateModified": "2011-06-01T07:21:48.000Z",
"type": "DOCX File",
"size": 84272
},
"previewerType": "DocumentViewer"
}
*/
//