Package org.pdfclown.objects

Examples of org.pdfclown.objects.PdfInteger


    @see #getCaptionPosition()
  */
  public void setCaptionPosition(
    CaptionPositionEnum value
    )
  {getBaseDataObject().put(PdfName.TP, new PdfInteger(value.getCode()));}
View Full Code Here


    @see #getOrientation()
  */
  public void setOrientation(
    OrientationEnum value
    )
  {getBaseDataObject().put(PdfName.R, new PdfInteger(value.getCode()));}
View Full Code Here

  // <dynamic>
  // <constructors>
  public SetLineJoin(
    LineJoinEnum value
    )
  {super(Operator, new PdfInteger(value.getCode()));}
View Full Code Here

  // <dynamic>
  // <constructors>
  public SetLineCap(
    LineCapEnum value
    )
  {super(Operator, new PdfInteger(value.getCode()));}
View Full Code Here

TOP

Related Classes of org.pdfclown.objects.PdfInteger

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.