Examples of DualWidget


Examples of org.pdfclown.documents.interaction.annotations.DualWidget

  private Widget newWidget(
    PdfDirectObject baseObject
    )
  {
    if(isDual)
      return new DualWidget(baseObject,getContainer());
    else
      return new Widget(baseObject,getContainer());
  }
View Full Code Here

Examples of org.pdfclown.documents.interaction.annotations.DualWidget

        /*
          NOTE: A radio button field typically combines multiple alternative widgets.
        */
        new DualWidget[]
        {
          new DualWidget(
            page,
            new Rectangle(150, 150, 36, 36),
            "first"
            ),
          new DualWidget(
            page,
            new Rectangle(200, 150, 36, 36),
            "second"
            ),
          new DualWidget(
            page,
            new Rectangle(250, 150, 36, 36),
            "third"
            )
        },
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.