Knowledge Base - Opening PDF document from storage file

You can use the SDK to open a PDF using Storage File as follows:

StorageFile file = await  StorageFile.GetFileFromApplicationUriAsync(new Uri(uri));

IRandomAccessStream stream = await file.OpenAsync(FileAccessMode.ReadWrite);

if (stream != null) 

               Frame.Navigate(typeof(PDFReaderPage), stream);

Applies To

RadaeePDF SDK for Windows 10

Details

Created : 2016-11-30 14:08:00, Last Modified : 2016-11-30 14:37:59