メインコンテンツまでスキップ

Type.IsNullable

NULL 許容型の場合は true、それ以外の場合は false を返します。

Syntax​

Type.IsNullable(
type as type
) as logical

Remarks​

nullable 型の場合は true を、それ以外の場合は false を返します。

Examples​

Example #1​

number が NULL 許容型かどうかを判断します。

Type.IsNullable(type number)

Result:

false

Example #2​

type nullable number が NULL 許容型かどうかを判断します。

Type.IsNullable(type nullable number)

Result:

true

Category​

Type