FileDocCategorySizeDatePackage
TableCell.javaAPI DocApache Poi 3.0.12432Mon Jan 01 18:55:30 GMT 2007org.apache.poi.hwpf.usermodel

TableCell

public class TableCell extends Range

Fields Summary
private int
_levelNum
private TableCellDescriptor
_tcd
private int
_leftEdge
private int
_width
Constructors Summary
public TableCell(int startIdx, int endIdx, TableRow parent, int levelNum, TableCellDescriptor tcd, int leftEdge, int width)

    super(startIdx, endIdx, Range.TYPE_PARAGRAPH, parent);
    _tcd = tcd;
    _leftEdge = leftEdge;
    _width = width;
    _levelNum = levelNum;
  
Methods Summary
public org.apache.poi.hwpf.usermodel.BorderCodegetBrcBottom()

    return _tcd.getBrcBottom();
  
public org.apache.poi.hwpf.usermodel.BorderCodegetBrcLeft()

    return _tcd.getBrcLeft();
  
public org.apache.poi.hwpf.usermodel.BorderCodegetBrcRight()

    return _tcd.getBrcRight();
  
public org.apache.poi.hwpf.usermodel.BorderCodegetBrcTop()

    return _tcd.getBrcTop();
  
public intgetLeftEdge()

    return _leftEdge;
  
public bytegetVertAlign()

    return _tcd.getVertAlign();
  
public intgetWidth()

    return _width;
  
public booleanisBackward()

    return _tcd.isFBackward();
  
public booleanisFirstMerged()

    return _tcd.isFFirstMerged();
  
public booleanisFirstVerticallyMerged()

    return _tcd.isFVertRestart();
  
public booleanisMerged()

    return _tcd.isFMerged();
  
public booleanisRotateFont()

    return _tcd.isFRotateFont();
  
public booleanisVertical()

    return _tcd.isFVertical();
  
public booleanisVerticallyMerged()

    return _tcd.isFVertMerge();