New to Telerik UI for WinForms? Start a free 30-day trial
Save Programmatically
Updated over 6 months ago
The SaveDocument method allows you to save the currently loaded document in an new file:
Using SaveDocument method.
C#
radPdfViewer1.SaveDocument(@"D:\MyFile.pdf");
You can use the GetDocumentAsStream method to retrieve the document stream:
Get the document stream
C#
var stream = radPdfViewer1.GetDocumentAsStream();
Save from the PdfViewerNavigator
The PdfViewerNavigator has a Save As button that can be used for saving the document as well.
