{{getMsg('Help_YouAreHere')}}:
/
{{page.title}}
{{page.title}}
{{$root.getMsg("downLoadHelpAsPdf")}}
{{helpModel.downloadHelpPdfDataStatus}}
Round
Returns the nearest integer of the number x.
Usage:
Round( x ) Round( x, #places )
Parameters:
X | Number to be rounded. If the decimal part of x is less than 0.5, then the next smaller integer is returned, if the decimal part of x is greater than or equal to 0.5 the next greater integer is returned. |
---|---|
#places | Number of decimal places to that x will be rounded. Please note that the method RoundHalfUp is used within this function. |
Returns:
Numeric value
Examples:
round (3.2) //3 round (1.5) //2 round (7.7) //8