UI2.SetSaveAsDialogFileName(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Sets the default file name for a form in the Save As dialog box.
public:
void SetSaveAsDialogFileName(System::String ^ bstrFileName);
public void SetSaveAsDialogFileName (string bstrFileName);
abstract member SetSaveAsDialogFileName : string -> unit
Public Sub SetSaveAsDialogFileName (bstrFileName As String)
Parameters
- bstrFileName
- String
The file name of the form supplied to the Save As dialog box.
Examples
In the following example, the SetSaveAsDialogFileName method of the UIObject object is used to set the default file name for the "Save As" dialog box:
thisXDocument.UI.<span class="label">SetSaveAsDialogFileName</span>("Status Report.xml");
Remarks
If the bstrFileName
argument is a null reference (Nothing in Visual Basic), "Form" is used as the file name. The SetSaveAsDialogFileName method may be used in conjunction with the SetSaveAsDialogLocation(String) method.