[Form]カスタム書式フォーマット【Acrobat】
本来のフォームの使用方法(入力データーの収集)とは
ちょっと
違って来ちゃってますが...笑
フォームのテキストボックス
カスタムフォーマットについてです
リファレンスはこちら
util methodsの
printf[LINK]
エクセルで言う所の
="テキスト"&値 って
形式です。
入力は電話番号なりFAX番号で
それに『TEL』なり『FAX』なりを付加するパターンですね。
d — Integer (truncating if necessary)
f — Floating-point number
s — String
x — Integer
入力例としては
↓
のように
event.value = util.printf("TEL :"+"%s", event.value);
で
入力イベントで入力された文字→文字列に変換
+
『TEL:』
とフォーマットして
元のテキストボックスに値を返します。
理屈がわかれば
簡単ですね。
0 — Comma separated, period decimal point
1 — No separator, period decimal point
2 — Period separated, comma decimal point
3 — No separator, comma decimal point
+ — Specifies that the number will always be formatted with a sign.
space — If the first character is not a sign, a space will be prefixed.
0 — Specifies padding to the field with leading zeros.
# — Specifies an alternate output form. For f, the output will always have a decimal point.
等
色々できますね。
フォームの名前欄に『様』付ける場合とか?に有効ですね。
| 固定リンク
「AcrobatForm」カテゴリの記事
- 【Acrobat】Acrobatフォームでデータ印字(はがき宛名)(ちょっとだけ修正)(2021.11.04)
- 【Acrobat】PDFフォームの値を取得して集計まで(まとめ)(2021.09.04)
- 【Acrobat】PDFフォームの値を取得して集計まで(その4)(2021.09.01)
- 【Acrobat】PDFフォームの値を取得して集計まで(その3)(2021.09.02)
- 【Acrobat】PDFフォームの値を取得して集計まで(その2)(2021.09.03)
この記事へのコメントは終了しました。
コメント