편집

다음을 통해 공유


_XDocument3.SaveAs(String) Method

Definition

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

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

Parameters

bstrFileUrl
String

The URL address that the form should be saved to.

Implements

Examples

if(thisXDocument.IsNew)
{
thisXDocument.<span class="label">SaveAs</span>("c:\\myforms\\form1.xml");
}
else
{
thisXDocument.Save();
}
if(thisXDocument.IsNew)
{
thisXDocument.<span class="label">SaveAs</span>("c:\\myforms\\form1.xml");
}
else
{
thisXDocument.Save();
}

Remarks

The SaveAs method will return an error if called from a form that is not fully trusted.

Note: The URL that the form is saved to must be in the same domain as the form that calls the SaveAs method.

Applies to