Package writer2latex.office
Class TableView
- java.lang.Object
-
- writer2latex.office.TableView
-
public class TableView extends java.lang.ObjectThis class represents a view of aTableRange. A view provides read access to the range using a simple grid model.
-
-
Constructor Summary
Constructors Constructor Description TableView(TableReader reader, TableRange range)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description org.w3c.dom.ElementgetCell(int nRow, int nCol)java.lang.StringgetCellStyleName(int nRow, int nCol)java.lang.StringgetCellWidth(int nRow, int nCol)TableLinegetCol(int nCol)intgetColCount()intgetColSpan(int nRow, int nCol)java.lang.StringgetColumnWidth(int nCol)java.lang.StringgetRelColumnWidth(int nCol)java.lang.StringgetRelTableWidth()TableLinegetRow(int nRow)intgetRowCount()intgetRowSpan(int nRow, int nCol)
-
-
-
Constructor Detail
-
TableView
public TableView(TableReader reader, TableRange range)
-
-
Method Detail
-
getRelTableWidth
public java.lang.String getRelTableWidth()
-
getRowCount
public int getRowCount()
-
getColCount
public int getColCount()
-
getColumnWidth
public java.lang.String getColumnWidth(int nCol)
-
getRelColumnWidth
public java.lang.String getRelColumnWidth(int nCol)
-
getRow
public TableLine getRow(int nRow)
-
getCol
public TableLine getCol(int nCol)
-
getCell
public org.w3c.dom.Element getCell(int nRow, int nCol)
-
getRowSpan
public int getRowSpan(int nRow, int nCol)
-
getColSpan
public int getColSpan(int nRow, int nCol)
-
getCellStyleName
public java.lang.String getCellStyleName(int nRow, int nCol)
-
getCellWidth
public java.lang.String getCellWidth(int nRow, int nCol)
-
-