StencilCreationScriptCreateXMLString Method

To save the script details in the rule handling xml.

Definition

Namespace: PCBI_Stencil_Editor.StencilCreationRules
Assembly: PCBI_Stencil_Editor (in PCBI_Stencil_Editor.dll) Version: 17.0.0.0 (17.0.0.0)
C#
string CreateXMLString()

Return Value

String
PCBI.Automation.IO.XML.XMLSerializeToString(this, out xml);

Example

C#
 public string CreateXMLString()
{
    string xml = "";
    PCBI.Automation.IO.XML.XMLSerializeToString(this, out xml);
    return xml;
}

See Also