0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

フィールドの種類(数値)

0
Last updated at Posted at 2016-09-29

数値

  • 数値や通貨を入力するためのフィールド

  • 数値以外のデータを入力することができないようになっています(画面を更新したときにエラーとなります)

  • 数値の表現方法を指定できるできます

    1. 指数
    2. パーセント
    3. 3桁ごとの桁区切り記号の指定
    4. 通貨記号の表示
    5. 小数点位置の調整(小数部の強制表示等)1
  • 数値以外のデータを入力した場合の動き

入力データ 保存されるデータ
数値 数値 123 → 123
数値+文字 数値 123ABC → 123*2
文字+数値 エラー ABC123 → エラー*3

  1. 小数点位置の調整については表示を調整しているだけで内部的には入力または計算したデータを保管しています

  2. 先頭から順にチェックして認識できるところまでをデータとして扱います(認識できないデータ以降は無視されます)

  3. 先頭のデータが認識できなければエラーとなります

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?