Package org.docx4j.dml

Examples of org.docx4j.dml.CTHyperlink


   * @param drawingProps
   * @param artificialList
   */
  private static void handleCTNonVisualDrawingProps(CTNonVisualDrawingProps drawingProps, List<Object> artificialList){
      if (drawingProps != null) {
          CTHyperlink docPrHyperLink = drawingProps.getHlinkClick();
          if (docPrHyperLink != null)
              artificialList.add(docPrHyperLink);
      }
  }
View Full Code Here

TOP

Related Classes of org.docx4j.dml.CTHyperlink

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.