Package ag.ion.bion.officelayer.text

Examples of ag.ion.bion.officelayer.text.ITextTableProperties


        // use default
        propertyKeysToCopy = TextTableProperties
            .getDefaultPropertyKeys();
      }
      if (propertyKeysToCopy != null) {
        ITextTableProperties newTableProperties = newTable
            .getProperties();
        ((IPropertyStore) tablePropertyStore).getProperties().copyTo(
            propertyKeysToCopy, newTableProperties);
      }
View Full Code Here


   *            the ITextTable that should be analysed
   *
   * @author Sebastian R�sgen
   */
  private void getTableAnalyse(ITextTable table) throws TextException {
    ITextTableProperties props = table.getProperties();
    this.properties = props;
    this.columnCount = table.getColumnCount();
    this.rowCount = table.getRowCount();
    this.tableWidth = props.getWidth();
    this.cellWidth = props.getCellWidths();
    this.repeatHeadline = props.repeatHeadline();
    this.textTableColumnsSeparators = props.getTableColumnSeparators();

  }
View Full Code Here

TOP

Related Classes of ag.ion.bion.officelayer.text.ITextTableProperties

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.