Save as Dialog box word C#

M

mjcast

I am trying to use the Word Saveas dialog box to perform a save, I need the dialog box to popup and the name to be replaced with a field in a bookmark. The problem is i cannot access the name property of the dialog box c# does not expose it, what should i use?

Word.Dialog dialog = wordApp.Dialogs[Word.WdWordDialog.wdDialogFileSaveAs];
dialog.Show(ref oMissing);

this shows fine, i just need the file name to change
 
Top