Type.IsNullable
NULL 許容型の場合は true、それ以外の場合は false を返します。
Syntax
Type.IsNullable(
type as type
) as logical
Remarks
nullable
型の場 合は true
を、それ以外の場合は false
を返します。
Examples
Example #1
<code>number</code> が NULL 許容型かどうかを判断します。
Type.IsNullable(type number)
Result:
false
Example #2
<code>type nullable number</code> が NULL 許容型かどうかを判断します。
Type.IsNullable(type nullable number)
Result:
true