IntegerValue.Implicit Operator
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
Implicit(Int64 to IntegerValue) |
Implicitly converts the specified Int64 value to an IntegerValue class. |
Implicit(IntegerValue to Int64) |
Implicitly converts the specified IntegerValue to an Int64 value. |
Implicit(Int64 to IntegerValue)
Implicitly converts the specified Int64 value to an IntegerValue class.
public static implicit operator DocumentFormat.OpenXml.IntegerValue (long value);
static member op_Implicit : int64 -> DocumentFormat.OpenXml.IntegerValue
Public Shared Widening Operator CType (value As Long) As IntegerValue
Parameters
- value
- Int64
The specified value.
Returns
A new IntegerValue instance with the value.
Applies to
Implicit(IntegerValue to Int64)
Implicitly converts the specified IntegerValue to an Int64 value.
public static implicit operator long (DocumentFormat.OpenXml.IntegerValue xmlAttribute);
public static implicit operator long (DocumentFormat.OpenXml.IntegerValue value);
static member op_Implicit : DocumentFormat.OpenXml.IntegerValue -> int64
static member op_Implicit : DocumentFormat.OpenXml.IntegerValue -> int64
Public Shared Widening Operator CType (xmlAttribute As IntegerValue) As Long
Public Shared Widening Operator CType (value As IntegerValue) As Long
Parameters
- xmlAttributevalue
- IntegerValue
Returns
The converted Int64 value.
Exceptions
Thrown when value
is null
.