Hello, Chris,
Currently, you can set FileName of the SaveFileDialog in the following way:
this.radPdfViewerNavigator1.SaveButton.MouseDown += SaveButton_MouseDown;
private void SaveButton_MouseDown(object sender, MouseEventArgs e)
{
SaveFileDialog savefile = new SaveFileDialog();
savefile.FileName = "MyFileName";
savefile.Filter = "PDF files (*.pdf)|*.pdf|All files (*.*)|*.*";
if (savefile.ShowDialog() == DialogResult.OK)
{
this.radPdfViewer1.PdfViewerElement.SaveDocument(savefile.FileName);
}
}
I hope this helps.
Regards,
Nadya | Tech Support Engineer
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.