Share via


Outline Constructors

Definition

Overloads

Outline()

Initializes a new instance of the Outline class.

Outline(OpenXmlElement[])

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

Outline(IEnumerable<OpenXmlElement>)

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

Outline(String)

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

Outline()

Initializes a new instance of the Outline class.

public Outline ();
Public Sub New ()

Applies to

Outline(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Outline(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Outline(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to