Context Constructors

Definition

Overloads

Context()

Initializes a new instance of the Context class.

Context(OpenXmlElement[])

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

Context(IEnumerable<OpenXmlElement>)

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

Context(String)

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

Context()

Initializes a new instance of the Context class.

public Context ();
Public Sub New ()

Applies to

Context(OpenXmlElement[])

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

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

Parameters

childElements
OpenXmlElement[]

Specifies the child elements.

Applies to

Context(IEnumerable<OpenXmlElement>)

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

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

Parameters

childElements
IEnumerable<OpenXmlElement>

Specifies the child elements.

Applies to

Context(String)

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

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

Parameters

outerXml
String

Specifies the outer XML of the element.

Applies to