Hello,
I wanted to know how to supress the outgoing link action if using custom hyperlink handling in Syncfusion.Windows.PdfViewer.HyperlinkEventArgs?
Like if you set e.Handled = true with buttons etc.
Example usage:
private void PdfViewer_HyperlinkPointerPressed(object sender, Syncfusion.Windows.PdfViewer.HyperlinkEventArgs e)
{
if (e.URI.Contains("somethingFancy"))
{
// make custom action and DONT try to link out
}
}
The above works, and the custom action is working but - it shows the "select an app from the store" popup from windows because it's trying to link out.
I searched for a e.Handled which we could set to "true" but found none.
Are there other ways to block/handle the event manually?
EDIT:
The API reference says, there's a "Handled" member: https://help.syncfusion.com/cr/uwp/Syncfusion.Windows.PdfViewer.HyperlinkEventArgs.html#Syncfusion_Windows_PdfViewer_HyperlinkEventArgs_Handled
But I can't access it and VS2017 tells me there's no such symbol to resolve. I've the newest libraries to date (10.0.20182.595)
Best regards,
Andreas