PDFlib

高度なPDFアプリケーションの開発を支援する定番プログラムライブラリー Supported by インフォテック株式会社

PDFlib サンプル集(クックブック)

本サンプルプログラムは、PDF 文書生成ライブラリーの実装である PDFlib の基本的な機能を実際のプログラムで紹介したものです。

本サイトでダウンロードした PDFlib は、一部機能の制限を除き、評価版として無償でお使いいただけます。

タブ順序

PDFlibで、フォームフィールドのタブ順序を定義するプログラムです。

必要な製品:PDFlib/PDFlib+PDI/PDFlib PPS


/*
 * タブ順序:
 * ユーザーが"Tab"キーを押したとき、フォームフィールドをタブ移動する順序を
 * 定義します。
 *
 * デフォルトでは、フィールドのタブの順序は、暗黙的にその作成順序に従って
 * 定義されますが、"taborder"オプションを使用すれば、他にタブ順序を定義する
 * ことができます。行から行、列から列にタブ順序を定義し、テキストフィールド
 * のマトリクスを作成します。
 *
 * 必要な製品 : PDFlib/PDFlib+PDI/PPS 9
 * 必要なデータ : 無し
 */
package com.pdflib.cookbook.pdflib.form_fields;

import com.pdflib.pdflib;
import com.pdflib.PDFlibException;

public class form_tab_order
{
    public static void main (String argv[])
    {
        /* 必要に応じてデータファイルがあるフォルダのパスを指定する */
        String searchpath = "../input";
        String outfile = "form_tab_order.pdf";
        String title = "Form Tab Order";
        
        pdflib p = null;
        int exitcode = 0;

        String optlist;
        int font, i, j, tab;
        double width=130, height=30, llx = 10, lly = 600;

        try {
            p = new pdflib();

            /* load_font() 等でエラーが起きた場合、-1を返す */
            p.set_option("errorpolicy=return");

            p.set_option("searchpath={" + searchpath + "}");

            if (p.begin_document(outfile, "") == -1)
                throw new Exception("Error: " + p.get_errmsg());

            p.set_info("Creator", "PDFlib Cookbook");
            p.set_info("Title", title);

            font = p.load_font("Helvetica", "winansi", "");
            if (font == -1)
                throw new Exception("Error: " + p.get_errmsg());

            /* ページを始める */
            p.begin_page_ext(0, 0, " width=a4.width height=a4.height");
            
            p.setfont(font, 14);
            p.fit_textline("Press \"Tab\" to move from one field to the next in " +
                "the tab order defined.", llx, lly, "");
            
            /* 行から行、列から列にタブ順序を定義し、テキストフィールドのマトリクスを
            /* 作成する(taborder=...) 
            /* 各テキストフィールドはタブ順序内の位置を示している(currentvalue={...})
             */
            optlist = "backgroundcolor={rgb 0.95 1 0.95} bordercolor={gray 0} " +
                "alignment=center font=" + font + " fontsize=18";
            
            lly-= 50;
            
            for (i = 1; i <= 3; i++) {
                for (j = 1, tab=i; j <= 3; j++, tab+=3) {
                    p.create_field(llx, lly, llx + width, lly + height, 
                        "field" + tab, "textfield", optlist + " taborder=" + tab +
                        " currentvalue={tab position " + tab + "}");
                    llx+=width + 20;
                }
                llx = 10;
                lly -= height + 30;
            }

            p.end_page_ext("");
            
            p.end_document("");

        } catch (PDFlibException e) {
            System.err.println("PDFlib exception occurred:");
            System.err.println("[" + e.get_errnum() + "] " + e.get_apiname()
                + ": " + e.get_errmsg());
            exitcode = 1;
        } catch (Exception e) {
            System.err.println(e);
            exitcode = 1;
        } finally {
            if (p != null) {
                p.delete();
            }
            System.exit(exitcode);
        }
    }
}
(Feb 22, 2016 - May 23, 2019)