Examples of newStyleColumnsElement()


Examples of org.odftoolkit.odfdom.dom.element.style.StylePageLayoutPropertiesElement.newStyleColumnsElement()

          }
          autoStyles.appendChild(pageLayoutNew);
        }
        NodeList vListStlePageLprop = pageLayout.getElementsByTagName("style:page-layout-properties");
        StylePageLayoutPropertiesElement vStlePageLprop = (StylePageLayoutPropertiesElement) vListStlePageLprop.item(0);
        StyleColumnsElement vStyleColumnsElement = vStlePageLprop.newStyleColumnsElement(columnsNumber);
        vStyleColumnsElement.setFoColumnGapAttribute(vSpacingColumn);
      }
    } catch (Exception e) {
      Logger.getLogger(TextDocument.class.getName()).log(Level.SEVERE, null, e);
      throw new RuntimeException("Page column sets failed.", e);
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.element.style.StylePageLayoutPropertiesElement.newStyleColumnsElement()

          }
          autoStyles.appendChild(pageLayoutNew);
        }
        NodeList vListStlePageLprop = pageLayout.getElementsByTagName("style:page-layout-properties");
        StylePageLayoutPropertiesElement vStlePageLprop = (StylePageLayoutPropertiesElement) vListStlePageLprop.item(0);
        StyleColumnsElement vStyleColumnsElement = vStlePageLprop.newStyleColumnsElement(columnsNumber);
        vStyleColumnsElement.setFoColumnGapAttribute(vSpacingColumn);
      }
    } catch (Exception e) {
      Logger.getLogger(TextDocument.class.getName()).log(Level.SEVERE, null, e);
      throw new RuntimeException("Page column sets failed.", e);
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.element.style.StyleSectionPropertiesElement.newStyleColumnsElement()

      OdfStyle style = styles.newStyle(OdfStyleFamily.Section);
      StyleSectionPropertiesElement sProperties = style
          .newStyleSectionPropertiesElement();
      sProperties.setTextDontBalanceTextColumnsAttribute(false);
      sProperties.setStyleEditableAttribute(false);
      StyleColumnsElement columnEle = sProperties
          .newStyleColumnsElement(1);
      columnEle.setFoColumnGapAttribute("0in");

      newSectionEle = footerEle.newTextSectionElement("true", name);
      newSectionEle.setStyleName(style.getStyleNameAttribute());
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.element.style.StyleSectionPropertiesElement.newStyleColumnsElement()

      OdfStyle style = styles.newStyle(OdfStyleFamily.Section);
      StyleSectionPropertiesElement sProperties = style
          .newStyleSectionPropertiesElement();
      sProperties.setTextDontBalanceTextColumnsAttribute(false);
      sProperties.setStyleEditableAttribute(false);
      StyleColumnsElement columnEle = sProperties
          .newStyleColumnsElement(1);
      columnEle.setFoColumnGapAttribute("0in");

      newSectionEle = headerEle.newTextSectionElement("true", name);
      newSectionEle.setStyleName(style.getStyleNameAttribute());
View Full Code Here

Examples of org.odftoolkit.odfdom.dom.element.style.StyleSectionPropertiesElement.newStyleColumnsElement()

      OdfStyle style = styles.newStyle(OdfStyleFamily.Section);
      StyleSectionPropertiesElement sProperties = style
          .newStyleSectionPropertiesElement();
      sProperties.setTextDontBalanceTextColumnsAttribute(false);
      sProperties.setStyleEditableAttribute(false);
      StyleColumnsElement columnEle = sProperties
          .newStyleColumnsElement(1);
      columnEle.setFoColumnGapAttribute("0in");

      newSectionEle = getContentRoot()
          .newTextSectionElement("true", name);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.