public string RotationChanged { get; set; }
Public Property RotationChanged As String
Get
Set
Example function:
function documentViewerRotationChanged(e) {
var documentViewer = e.target;
//Pretty print the event arguments
var json = JSON.stringify(e.detail, null, 2);
console.log(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "rotationChanged",
"document": "p4450.pdf",
"pagesRotation": 90,
"pageNumber": 2,
"pageRotation": 90
}
*/
//