Returns a 16-bit integer number
value from the given value
. If the given value
is null
, Int16.From
returns null
. If the given value
is number
within the range of 16-bit integer without a fractional part, value
is returned. If it has fractional part, then the number is rounded with the rounding mode specified. The default rounding mode is RoundingMode.ToEven
. If the given value
is of any other type, see Number.FromText
for converting it to number
value, then the previous statement about converting number
value to 16-bit integer number
value applies. See Number.Round
for the available rounding modes.