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