public string TextSelected { get; set; }
Public Property TextSelected As String
Get
Set
Example function:
function documentViewerTextSelected(e) {
var documentViewer = e.target;
//Pretty print the event arguments
var json = JSON.stringify(e.detail, null, 2);
console.log(json);
}
//SAMPLE OUTPUT:
/*
{
"eventName": "textSelected",
"document": "p4450.pdf",
"text": "We are intently focused on implementing new and innovative strategies "
}
*/
//