Package com.lowagie.text.pdf

Examples of com.lowagie.text.pdf.PdfBoolean


  /**
   * Sets the initial visibility of the field.
   * @param visible  the default is true (visible)
   */
  public void setVisible(boolean visible) {
    put(PdfName.V, new PdfBoolean(visible));
  }
View Full Code Here


  /**
   * Indication if the field value should be editable in the viewer.
   * @param editable  the default is false (not editable)
   */
  public void setEditable(boolean editable) {
    put(PdfName.E, new PdfBoolean(editable));
  }
View Full Code Here

TOP

Related Classes of com.lowagie.text.pdf.PdfBoolean

Copyright © 2018 www.massapicom. 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.