Edit

Share via


XmlForm.SaveAs(String) Method

Definition

Saves the form to the specified Uniform Resource Locator (URL).

public:
 abstract void SaveAs(System::String ^ fileUrl);
public abstract void SaveAs (string fileUrl);
abstract member SaveAs : string -> unit
Public MustOverride Sub SaveAs (fileUrl As String)

Parameters

fileUrl
String

The path or URL that the form should be saved to.

Exceptions

The value passed for fileUrl is a null reference (Nothing in Visual Basic).

The value passed for fileUrl is "" or is invalid.

The Save method was called from the Loading event.

The form template is not configured for Full Trust using the Security and Trust category of the Form Options dialog box.

Examples

In the following code example, the New property is used to determine if the form has been saved previously, and if not, the SaveAs method is used to save the form to the specified URL.

if(this.New)
{
   this.SaveAs("c:\\myforms\\form1.xml");
}
else
{
   this.Save();
}
If(Me.New) Then
   Me.SaveAs("c:\\myforms\\form1.xml")
Else
   Me.Save()
End If

Remarks

The value passed as the fileUrl parameter must be a valid path or URL, and must include the filename with a .xml file extension.

Using the SaveAs method sets the Dirty property of the form to false as soon as the form is saved.

This member can be accessed only by forms opened from a form template that has been configured to run with full trust using the Security and Trust category of the Form Options dialog box. This member requires full trust for the immediate caller and cannot be used by partially trusted code. For more information, see "Using Libraries from Partially Trusted Code" on MSDN.

This type or member can be accessed only from code running in forms opened in Microsoft InfoPath Filler.

Applies to