Share via


Int32Value.Implicit Operator

Definition

Overloads

Implicit(Int32 to Int32Value)

Implicitly converts an Int32 value to a specified Int32Value instance.

Implicit(Int32Value to Int32)

Implicitly converts the specified value to an Int32 value.

Implicit(Int32 to Int32Value)

Implicitly converts an Int32 value to a specified Int32Value instance.

public static implicit operator DocumentFormat.OpenXml.Int32Value (int value);
static member op_Implicit : int -> DocumentFormat.OpenXml.Int32Value
Public Shared Widening Operator CType (value As Integer) As Int32Value

Parameters

value
Int32

The specified Int32 value.

Returns

A new Int32Value instance with the value.

Applies to

Implicit(Int32Value to Int32)

Implicitly converts the specified value to an Int32 value.

public static implicit operator int (DocumentFormat.OpenXml.Int32Value xmlAttribute);
public static implicit operator int (DocumentFormat.OpenXml.Int32Value value);
static member op_Implicit : DocumentFormat.OpenXml.Int32Value -> int
static member op_Implicit : DocumentFormat.OpenXml.Int32Value -> int
Public Shared Widening Operator CType (xmlAttribute As Int32Value) As Integer
Public Shared Widening Operator CType (value As Int32Value) As Integer

Parameters

xmlAttributevalue
Int32Value

Returns

The converted Int32 value.

Exceptions

Thrown when value is null.

Applies to