FormRegionManifest.ToXml 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.
Overloads
ToXml() |
Creates a string that represents the FormRegionManifest as XML. |
ToXml(XmlWriter) |
Creates a string that represents the FormRegionManifest as XML and saves it to an XmlTextWriter instance. |
ToXml()
Creates a string that represents the FormRegionManifest as XML.
public:
System::String ^ ToXml();
public string ToXml ();
abstract member ToXml : unit -> string
Public Function ToXml () As String
Returns
A string that represents the FormRegionManifest as XML.
Remarks
Use the ToXml method if you want to create an XML manifest file that describes the form region.
This method returns a string that contains elements and attributes that describe the FormRegionManifest. You can call the ToXML
method of other types in the Microsoft.Office.Tools.Outlook namespace to build a complete XML manifest file.
Applies to
ToXml(XmlWriter)
Creates a string that represents the FormRegionManifest as XML and saves it to an XmlTextWriter instance.
public:
void ToXml(System::Xml::XmlWriter ^ writer);
public void ToXml (System.Xml.XmlWriter writer);
abstract member ToXml : System.Xml.XmlWriter -> unit
Public Sub ToXml (writer As XmlWriter)
Parameters
- writer
- XmlWriter
An XmlTextWriter to which to write the string.