Adds a Cell to the Table at a certain row and column.
@param aCell The Cell to add
@param row The row where the Cell will be added
@param column The column where the Cell will be added
@throws BadElementException
Adds a cell to this sheet The RowsExceededException may be caught if client code wishes to explicitly trap the case where too many rows have been written to the current sheet. If this behaviour is not desired, it is sufficient simply to handle the WriteException, since this is a base class of RowsExceededException
@param cell the cell to add
@exception jxl.write..WriteException
@exception jxl.write.biff.RowsExceededException
Add a new cell to the table. The cell element contained in a row of a table carries content for that table. It is a character container, just like p, item, and hi, and its primary purpose is to display textual data, possibly enhanced with hyperlinks, emphasized blocks of text, images and form fields.
@param name (May be null) a local identifier used to differentiate the element from its siblings.
@param role (May be null) determines what kind of information the cell carries, either header or data. See cell.ROLES
@param rows (May be zero for no defined value) determines how many rows does this cell span.
@param cols (May be zero for no defined value) determines how many columns does this cell span.
@param rend (May be null) a rendering hint used to override the default display of the element.
@return a new table cell.
Adds a cell to this directory. Takes the name of the cell; a new WFSCell class is returned. If the cell name already exists, this method returns null.
@param cellName The name of the new cell to add
@return The class representing the new cell
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.