|
|
| Function name |
Return type |
Range for expression argument |
| CBool |
Boolean |
Any valid String or numeric
expression. |
| CByte |
Byte |
0 through 255; fractions are rounded. |
| CChar |
Char |
Any valid String expression;
value can be 0 through 65535. |
| CDate |
Date |
Any valid representation of a date
and time. |
| CDbl |
Double |
-1.79769313486231E+308 through
-4.94065645841247E-324 for negative values;
4.94065645841247E-324 through
1.79769313486231E+308 for positive values. |
| CDec |
Decimal |
+/-79,228,162,514,264,337,593,543,950,335 for
zero-scaled numbers, that is, numbers with no
decimal places. For numbers with 28 decimal places,
the range is
+/-7.9228162514264337593543950335. The smallest
possible non-zero number is
0.0000000000000000000000000001. |
| CInt |
Integer |
-2,147,483,648 through
2,147,483,647; fractions are rounded. |
| CLng |
Long |
-9,223,372,036,854,775,808
through 9,223,372,036,854,775,807; fractions are
rounded. |
| CObj |
Object |
Any valid expression. |
| CShort |
Short |
-32,768 through 32,767; fractions
are rounded. |
| CSng |
Single |
-3.402823E+38 through -1.401298E-45
for negative values; 1.401298E-45 through
3.402823E+38 for positive values. |
| CStr |
String |
Returns for CStr depend on
the expression argument. See
Returns for CStr. |
|
|
|
|