UI2.SetSaveAsDialogFileName(String) Method

Definition

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.

Important: This member can be accessed only by forms running in the same domain as the currently open form, or by forms that have been granted cross-domain permissions.

Applies to