Paragraph Constructors
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
Paragraph() |
Initializes a new instance of the Paragraph class. |
Paragraph(OpenXmlElement[]) |
Initializes a new instance of the Paragraph class with the specified child elements. |
Paragraph(IEnumerable<OpenXmlElement>) |
Initializes a new instance of the Paragraph class with the specified child elements. |
Paragraph(String) |
Initializes a new instance of the Paragraph class from outer XML. |
Paragraph()
Initializes a new instance of the Paragraph class.
public Paragraph ();
Public Sub New ()
Applies to
Paragraph(OpenXmlElement[])
Initializes a new instance of the Paragraph class with the specified child elements.
public Paragraph (params DocumentFormat.OpenXml.OpenXmlElement[] childElements);
new DocumentFormat.OpenXml.Math.Paragraph : DocumentFormat.OpenXml.OpenXmlElement[] -> DocumentFormat.OpenXml.Math.Paragraph
Public Sub New (ParamArray childElements As OpenXmlElement())
Parameters
- childElements
- OpenXmlElement[]
Specifies the child elements.
Applies to
Paragraph(IEnumerable<OpenXmlElement>)
Initializes a new instance of the Paragraph class with the specified child elements.
public Paragraph (System.Collections.Generic.IEnumerable<DocumentFormat.OpenXml.OpenXmlElement> childElements);
new DocumentFormat.OpenXml.Math.Paragraph : seq<DocumentFormat.OpenXml.OpenXmlElement> -> DocumentFormat.OpenXml.Math.Paragraph
Public Sub New (childElements As IEnumerable(Of OpenXmlElement))
Parameters
- childElements
- IEnumerable<OpenXmlElement>
Specifies the child elements.
Applies to
Paragraph(String)
Initializes a new instance of the Paragraph class from outer XML.
public Paragraph (string outerXml);
new DocumentFormat.OpenXml.Math.Paragraph : string -> DocumentFormat.OpenXml.Math.Paragraph
Public Sub New (outerXml As String)
Parameters
- outerXml
- String
Specifies the outer XML of the element.