Chapter 2: ColdFusion Functions
351
Fix
Returns the closest integer less than number if number is greater than or equal to 0.
Returns the closest integer greater than number if number is less than 0.
See also
Ceiling
,
Int
, and
Round
.
Syntax
Fix
(
number)
number
Any number.
Examples
<!--- This example shows the use of Fix --->
<HTML>
<HEAD>
<TITLE>
Fix Example
</TITLE>
</HEAD>
<BODY>
<H3>Fix Example</H3>
<P>Fix returns the closest integer less than the number
if the number is greater than or equal to 0. Fix returns the
closest integer greater than the number if number is less than 0.
<CFOUTPUT>
<P>The fix of 3.4 is #fix(3.4)#
<P>The fix of 3 is #fix(3)#
<P>The fix of 3.8 is #fix(3.8)#
<P>The fix of -4.2 is #fix(-4.2)#
</CFOUTPUT>
</BODY>
</HTML>
Summary of Contents for COLDFUSION 4.5-CFML LANGUAGE
Page 1: ...Allaire Corporation CFML Language Reference ColdFusion 4 5...
Page 207: ...Chapter 1 ColdFusion Tags 183 CFCATCH CFTRY BODY HTML...
Page 224: ...200 CFMLLanguageReference CFOUTPUT P Text within CFOUTPUT is always shown CFOUTPUT BODY HTML...
Page 336: ...312 CFMLLanguageReference CFIF BODY HTML...
Page 404: ...380 CFMLLanguageReference DE It is morning CFOUTPUT P BODY HTML...
Page 413: ...Chapter 2 ColdFusion Functions 389 Customer BalanceDue BR CFOUTPUT CFIF BODY HTML...
Page 483: ...Chapter 2 ColdFusion Functions 459 CFOUTPUT CFLOOP BODY HTML...
Page 584: ...560 CFMLLanguageReference...
Page 594: ...570 CFMLLanguageReference...