Skip to main content

Type.IsNullable

ส่งกลับค่าจริงถ้าประเภทนั้นเป็นประเภทที่สามารถเป็น NULL ได้ มิฉะนั้นจะส่งกลับค่าเท็จ

Syntax

Type.IsNullable(
type as type
) as logical

Remarks

ส่งกลับ true ถ้าประเภทเป็นประเภทที่ nullable มิฉะนั้นจะส่งกลับ 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

Category

Type