Difference between revisions of "Int16"
From Xojo Documentation
m (1 revision) |
m |
||
(12 intermediate revisions by 5 users not shown) | |||
Line 1: | Line 1: | ||
+ | {{DatatypeBox | ||
+ | | name=Int16 | ||
+ | | platform=all | ||
+ | }} | ||
+ | {{Description | ||
+ | |text=Used to store 16-bit integer values. The default value is 0. Generally you will use the Integer data type (equivalent to [[Int32]] on 32-bit apps or [[Int64]] on 64-bit apps) or [[UInteger]] (equivalent to [[UInt32]] on 32-bit apps or [[UInt64]] on 64-bit apps). This size-specific integer data type is available for use with external OS APIs.}} | ||
+ | == Notes == | ||
+ | Int16 values can range from -32,768 to 32,767 and use 2 bytes. | ||
− | == | + | == See Also == |
− | + | [[Integer]] | |
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | [[ | ||
− | |||
− | |||
− |
Latest revision as of 19:34, 8 June 2018
Data Type
Used to store 16-bit integer values. The default value is 0. Generally you will use the Integer data type (equivalent to Int32 on 32-bit apps or Int64 on 64-bit apps) or UInteger (equivalent to UInt32 on 32-bit apps or UInt64 on 64-bit apps). This size-specific integer data type is available for use with external OS APIs.
Notes
Int16 values can range from -32,768 to 32,767 and use 2 bytes.