Transform Constructors

Definition

Overloads

Transform()

Initializes a new instance of the Transform class.

Transform(OpenXmlElement[])

Initializes a new instance of the Transform class with the specified child elements.

Transform(IEnumerable<OpenXmlElement>)

Initializes a new instance of the Transform class with the specified child elements.

Transform(String)

Initializes a new instance of the Transform class from outer XML.

Transform()

Initializes a new instance of the Transform class.

public Transform ();
Public Sub New ()

Applies to

Transform(OpenXmlElement[])

Initializes a new instance of the Transform class with the specified child elements.

public Transform (params DocumentFormat.OpenXml.OpenXmlElement[] childElements);
new DocumentFormat.OpenXml.Presentation.Transform : DocumentFormat.OpenXml.OpenXmlElement[] -> DocumentFormat.OpenXml.Presentation.Transform
Public Sub New (ParamArray childElements As OpenXmlElement())

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Transform(IEnumerable<OpenXmlElement>)

Initializes a new instance of the Transform class with the specified child elements.

public Transform (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> childElements);
new DocumentFormat.OpenXml.Presentation.Transform : seq<DocumentFormat.OpenXml.OpenXmlElement> -> DocumentFormat.OpenXml.Presentation.Transform
Public Sub New (childElements As IEnumerable(Of OpenXmlElement))

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Transform(String)

Initializes a new instance of the Transform class from outer XML.

public Transform (string outerXml);
new DocumentFormat.OpenXml.Presentation.Transform : string -> DocumentFormat.OpenXml.Presentation.Transform
Public Sub New (outerXml As String)

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to