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