DecimalValue Constructors

Definition

Overloads

DecimalValue()

Initializes a new instance of the DecimalValue class.

DecimalValue(DecimalValue)

Initializes a new instance of the DecimalValue class by deep copying the supplied DecimalValue class.

DecimalValue(Decimal)

Initializes a new instance of the DecimalValue class using the supplied Decimal value.

DecimalValue()

Initializes a new instance of the DecimalValue class.

public DecimalValue ();
Public Sub New ()

Applies to

DecimalValue(DecimalValue)

Initializes a new instance of the DecimalValue class by deep copying the supplied DecimalValue class.

public DecimalValue (DocumentFormat.OpenXml.DecimalValue source);
new DocumentFormat.OpenXml.DecimalValue : DocumentFormat.OpenXml.DecimalValue -> DocumentFormat.OpenXml.DecimalValue
Public Sub New (source As DecimalValue)

Parameters

source
DecimalValue

The source DecimalValue class.

Applies to

DecimalValue(Decimal)

Initializes a new instance of the DecimalValue class using the supplied Decimal value.

public DecimalValue (decimal value);
new DocumentFormat.OpenXml.DecimalValue : decimal -> DocumentFormat.OpenXml.DecimalValue
Public Sub New (value As Decimal)

Parameters

value
Decimal

The Decimal value.

Applies to