XmlForm.SetSaveAsDialogFilename Method
Sets the default filename for the SaveAs dialog box.
Namespace: Microsoft.Office.InfoPath
Assembly: Microsoft.Office.InfoPath (in Microsoft.Office.InfoPath.dll)
Syntax
'Declaration
Public MustOverride Sub SetSaveAsDialogFilename ( _
filename As String _
)
'Usage
Dim instance As XmlForm
Dim filename As String
instance.SetSaveAsDialogFilename(filename)
public abstract void SetSaveAsDialogFilename(
string filename
)
Parameters
filename
Type: System.StringThe name of the file.
Exceptions
Exception | Condition |
---|---|
FileNotFoundException | The file cannot be found. |
ArgumentNullException | The parameter passed to this method is a null reference (Nothing in Visual Basic). |
ArgumentException | The parameter passed to this method is not valid. For example, it is of the wrong type or format. |
Remarks
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.
This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.
Examples
In the following code example, the SetSaveAsDialogFilename method of the XmlForm class is used to set the filename for the SaveAs dialog box to "SampleFile".
this.SetSaveAsDialogFilename("SampleFile");
Me.SetSaveAsDialogFilename("SampleFile")