DecimalValue.Implicit 演算子

定義

オーバーロード

Implicit(DecimalValue to Decimal)

指定した値を Decimal 値に暗黙的に変換します。

Implicit(Decimal to DecimalValue)

指定された Decimal 値を暗黙的に変換して、DecimalValue クラスの新しいインスタンスを初期化します。

Implicit(DecimalValue to Decimal)

指定した値を Decimal 値に暗黙的に変換します。

public static implicit operator decimal (DocumentFormat.OpenXml.DecimalValue xmlAttribute);
static member op_Implicit : DocumentFormat.OpenXml.DecimalValue -> decimal
Public Shared Widening Operator CType (xmlAttribute As DecimalValue) As Decimal

パラメーター

xmlAttribute
DecimalValue

変換する DecimalValue。

戻り値

Decimal

変換された Decimal 値。

例外

xmlAttribute が null の場合にスローされます。

適用対象

Implicit(Decimal to DecimalValue)

指定された Decimal 値を暗黙的に変換して、DecimalValue クラスの新しいインスタンスを初期化します。

public static implicit operator DocumentFormat.OpenXml.DecimalValue (decimal value);
static member op_Implicit : decimal -> DocumentFormat.OpenXml.DecimalValue
Public Shared Widening Operator CType (value As Decimal) As DecimalValue

パラメーター

value
Decimal

指定した値。

戻り値

DecimalValue

値を持つ新しい DecimalValue インスタンス。

適用対象