|
| |||||||||
Convert between various units of area measurement.
The resulting value in the specified TO unit of area.
<cfx_kmConvert F=Area V=variable SHOW
VALUE=number
FROM=unit
TO=unit
FORMAT=format >
| Attribute | Description | Required? |
| VALUE |
Value to convert.
Supported units |
YES |
| FROM | Unit of the supplied input value. | YES |
| TO | Unit of the desired output value. | YES |
| FORMAT |
Desired output format. (default="%.2f") For more information, refer to Appendix C: Numeric Format Strings. |
no |
| Examples | |
|
<cfx_kmConvert F=Area VALUE=81 FROM=ft2 TO=yd2>
<cfx_kmConvert F=Area VALUE=81 FROM=ft2 TO=yd2 FORMAT="%.1f sq. yards"> |
|
| Result: |
9.00 9.0 sq. yards |
|
<cfx_kmConvert F=Area VALUE=100 FROM=m2 TO=ft2>
<cfx_kmConvert F=Area VALUE="1076.39" FROM=ft2 TO=m2> |
|
| Result: |
1076.39 100.00 |
The resulting value in the specified TO unit of length.
<cfx_kmConvert F=Length V=variable SHOW
VALUE=number
FROM=unit
TO=unit
FORMAT=format >
| Attribute | Description | Required? |
| VALUE |
Value to convert.
Supported units | |
| FROM | Unit of the supplied input value. | YES |
| TO | Unit of the desired output value. | YES |
| FORMAT |
Desired output format. (default="%.2f") For more information, refer to Appendix C: Numeric Format Strings. |
no |
| Examples | |
|
<cfx_kmConvert F=Length VALUE=10 FROM=ft TO=in
FORMAT="%.0f ft"> |
|
| Result: | 120 ft |
|
<cfx_kmConvert F=Length VALUE=100 FROM=ft TO=m
FORMAT="%.3f meters"> <cfx_kmConvert F=Length VALUE="30.480" FROM=m TO=ft FORMAT="%.1f feet"> |
|
| Result: |
30.480 meters 100.0 feet |
Convert between various units of temperature.
The resulting value in the specified TO unit of temperature.
<cfx_kmConvert F=Temperature V=variable SHOW
VALUE=number
FROM=unit
TO=unit
FORMAT=format >
| Attribute | Description | Required? |
| VALUE |
Value to convert.
Supported units | |
| FROM | Unit of the supplied input value. | YES |
| TO | Unit of the desired output value. | YES |
| FORMAT |
Desired output format. (default="%.2f") For more information, refer to Appendix C: Numeric Format Strings. |
no |
| Examples | |
|
<cfx_kmConvert F=Temperature VALUE=32 FROM=fa TO=ce
FORMAT="%.0f"> <cfx_kmConvert F=Temperature VALUE=212 FROM=fa TO=ce> |
|
| Result: |
0 100.00 |
|
<cfx_kmConvert F=Temperature VALUE=212 FROM=ce TO=fa
FORMAT="%.1f F"> <cfx_kmConvert F=Temperature VALUE=413.6 FROM=ce TO=fa FORMAT="%.1f F"> |
|
| Result: |
413.6 F 212.0 F |
Convert between various units of volume.
The resulting value in the specified TO unit of volume.
<cfx_kmConvert F=Volume V=variable SHOW
VALUE=number
FROM=unit
TO=unit
FORMAT=format >
| Attribute | Description | Required? |
| VALUE |
Value to convert.
Supported units | |
| FROM | Unit of the supplied input value. | YES |
| TO | Unit of the desired output value. | YES |
| FORMAT |
Desired output format. (default="%.2f") For more information, refer to Appendix C: Numeric Format Strings. |
no |
| Examples | |
|
<cfx_kmConvert F=Volume VALUE=100 FROM=m3 TO=ft3>
<cfx_kmConvert F=Volume VALUE=3531.47 FROM=ft3 TO=m3> <cfx_kmConvert F=Volume VALUE=100 FROM=gal TO=qt> |
|
| Result: |
3531.47 100.00 400.00 |
Convert between various units of weight.
The resulting value in the specified TO unit of weight.
<cfx_kmConvert F=Weight V=variable SHOW
VALUE=number
FROM=unit
TO=unit
FORMAT=format >
| Attribute | Description | Required? |
| VALUE |
Value to convert.
Supported units | |
| FROM | Unit of the supplied input value. | YES |
| TO | Unit of the desired output value. | YES |
| FORMAT |
Desired output format. (default="%.2f") For more information, refer to Appendix C: Numeric Format Strings. |
no |
| Examples | |
|
<cfx_kmConvert F=Weight VALUE=100 FROM=kg TO=lb>
<cfx_kmConvert F=Weight VALUE=220.46 FROM=lb TO=kg> <cfx_kmConvert F=Weight VALUE=100 FROM=lb TO=kg> |
|
| Result: |
220.46 100.00 45.36 |