Package org.pdfclown.documents.contents

Examples of org.pdfclown.documents.contents.LineDash


      )
    {dashArray[index] = ((PdfNumber<?>)baseDashArray.get(index)).getNumberValue();}
    // 2. Dash phase.
    float dashPhase = ((PdfNumber<?>)operands.get(1)).getNumberValue();

    return new LineDash(dashArray, dashPhase);
  }
View Full Code Here


      dashIndex < dashLength;
      dashIndex++
      )
    {dashArray[dashIndex] = ((PdfNumber<?>)dashObject.get(dashIndex)).getNumberValue();}

    return new LineDash(dashArray);
  }
View Full Code Here

      link.setBorder(
        new Border(
          document,
          1,
          Border.StyleEnum.Dashed,
          new LineDash(new float[]{8,5,2,5})
          )
        );
    }

    /*
 
View Full Code Here

TOP

Related Classes of org.pdfclown.documents.contents.LineDash

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.