| DECREMENTVALUE | |
| 説明
数値の整数部を減算します。 |
|
| 戻り値
number の整数部。1 だけ減算されます。 |
|
| カテゴリ
算術関数 |
|
関数のシンタックスDecrementValue(number) |
|
| 関連項目
IncrementValue |
|
| パラメータ
|
|
例<h3>DecrementValue の例</h3>
<p>数値の整数部を 1 だけ減算して返します。
<p>DecrementValue(0):
<cfoutput>#DecrementValue(0)#</cfoutput>
<p>DecrementValue("1"):
<cfoutput>#DecrementValue("1")#</cfoutput>
<p>DecrementValue(123.35):
<cfoutput>#DecrementValue(123.35)#</cfoutput>
|
|
| NUMBER | |
| 減算する数値です。 | |