FormRegionCustomAction.ToXml Method

Definition

Overloads

ToXml()

Returns a string that represents the FormRegionCustomAction as XML.

ToXml(XmlWriter)

Saves the XML representation of the custom action in a string to an XmlTextWriter object.

ToXml()

Returns a string that represents the FormRegionCustomAction 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 FormRegionCustomAction as XML.

Remarks

Use the ToXml method if you want to create an XML manifest file that describes the custom action.

This method returns a string that contains elements and attributes that describe the FormRegionCustomAction.

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)

Saves the XML representation of the custom action in a string to an XmlTextWriter object.

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.

Applies to