नोट
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप साइन इन करने या निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
इस पृष्ठ तक पहुंच के लिए प्राधिकरण की आवश्यकता होती है। आप निर्देशिकाएँ बदलने का प्रयास कर सकते हैं।
Syntax
Type.IsNullable(type as type) as logical
About
Returns true if a type is a nullable type; otherwise, false.
Example 1
Determine if number is nullable.
Usage
Type.IsNullable(type number)
Output
false
Example 2
Determine if type nullable number is nullable.
Usage
Type.IsNullable(type nullable number)
Output
true