Compartir a través de


Type.IsNullable

Sintaxis

  
Type.IsNullable(type as type) as logical

Acerca de

Devuelve true si un tipo es nullable; de lo contrario, devuelve false.

Ejemplo 1

Determinar si number admite valores NULL.

Uso

Type.IsNullable(type number)

Salida

false

Ejemplo 2

Determinar si type nullable number admite valores NULL.

Uso

Type.IsNullable(type nullable number)

Salida

true