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