com.aspose.slides
Class Cell

java.lang.Object
  extended by com.aspose.slides.Cell

public class Cell
extends java.lang.Object

Represents the cell of a table.


Method Summary
 CellBorder getBorderBottom()
          Returns the bottom border of a cell.
 CellBorder getBorderLeft()
          Returns the left border of a cell.
 CellBorder getBorderRight()
          Returns the right border of a cell.
 CellBorder getBorderTop()
          Returns the top border of a cell.
 java.awt.Point getBottomRightCell()
          Returns the bottom right coordinate of a merged cell.
 FillFormat getFillFormat()
          Returns the FillFormat object which contains fill properties of a cell.
 int getHeight()
          Returns the height of a cell.
 Table getTable()
          Returns the parent Table of a cell.
 TextFrame getTextFrame()
          Returns the TextFrame of a cell.
 java.awt.Point getTopLeftCell()
          Returns the top left coordinate of a merged cell.
 int getWidth()
          Returns the width of a cell.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

getTable

public Table getTable()
Returns the parent Table of a cell.


getTextFrame

public TextFrame getTextFrame()
Returns the TextFrame of a cell.


getFillFormat

public FillFormat getFillFormat()
Returns the FillFormat object which contains fill properties of a cell.


getBorderTop

public CellBorder getBorderTop()
Returns the top border of a cell.


getBorderBottom

public CellBorder getBorderBottom()
Returns the bottom border of a cell.


getBorderLeft

public CellBorder getBorderLeft()
Returns the left border of a cell.


getBorderRight

public CellBorder getBorderRight()
Returns the right border of a cell.


getWidth

public int getWidth()
Returns the width of a cell.


getHeight

public int getHeight()
Returns the height of a cell.


getTopLeftCell

public java.awt.Point getTopLeftCell()
Returns the top left coordinate of a merged cell.


getBottomRightCell

public java.awt.Point getBottomRightCell()
Returns the bottom right coordinate of a merged cell.