EnumValue<T> Constructors

Definition

Overloads

EnumValue<T>()

Initializes a new instance of the EnumValue<T> class.

EnumValue<T>(EnumValue<T>)

Initializes a new instance of the EnumValue<T> by deep copying the supplied EnumValue<T> class.

EnumValue<T>(T)

Initializes a new instance of the EnumValue<T> class using the supplied value of type T.

EnumValue<T>()

Initializes a new instance of the EnumValue<T> class.

public EnumValue ();
Public Sub New ()

Applies to

EnumValue<T>(EnumValue<T>)

Initializes a new instance of the EnumValue<T> by deep copying the supplied EnumValue<T> class.

public EnumValue (DocumentFormat.OpenXml.EnumValue<T> source);
new DocumentFormat.OpenXml.EnumValue<'T (requires 'T : struct)> : DocumentFormat.OpenXml.EnumValue<'T (requires 'T : struct)> -> DocumentFormat.OpenXml.EnumValue<'T (requires 'T : struct)>
Public Sub New (source As EnumValue(Of T))

Parameters

source
EnumValue<T>

The source EnumValue<T> class.

Applies to

EnumValue<T>(T)

Initializes a new instance of the EnumValue<T> class using the supplied value of type T.

public EnumValue (T value);
new DocumentFormat.OpenXml.EnumValue<'T (requires 'T : struct)> : 'T -> DocumentFormat.OpenXml.EnumValue<'T (requires 'T : struct)>
Public Sub New (value As T)

Parameters

value
T

The value of type T.

Applies to