Package com.lowagie.text.pdf

Examples of com.lowagie.text.pdf.PdfStructureTreeRoot


  {
    this.pdfContentByte = pdfContentByte;
   
    if (isTagged)
    {
      PdfStructureTreeRoot root = pdfWriter.getStructureTreeRoot();
      allTag = new PdfStructureElement(root, new PdfName("All"));
      root.mapRole(new PdfName("All"), new PdfName("Sect"));
      root.mapRole(new PdfName("Anchor"), PdfName.TEXT);
      String language =
        exporter.getStringParameter(
            JRPdfExporterParameter.TAG_LANGUAGE,
            JRPdfExporterParameter.PROPERTY_TAG_LANGUAGE
            );
View Full Code Here

TOP

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

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.