Package | Description |
---|---|
com.hfg.xml.msofficexml.xlsx.spreadsheetml |
Modifier and Type | Method and Description |
---|---|
SsmlCell |
SsmlRow.addCell() |
SsmlCell |
SsmlRow.addCell(double inValue) |
SsmlCell |
SsmlRow.addCell(float inValue) |
SsmlCell |
SsmlRow.addCell(int inValue) |
SsmlCell |
SsmlRow.addCell(List<SsmlTextRun> inValue) |
SsmlCell |
SsmlRow.addCell(long inValue) |
SsmlCell |
SsmlRow.addCell(Object inValue) |
SsmlCell |
SsmlRow.addCell(SsmlTextRun inValue) |
SsmlCell |
SsmlRow.addCell(String inValue) |
SsmlCell |
SsmlRow.addCellByColIndex(int inColIndex) |
SsmlCell |
SsmlCell.addContent(CharSequence inContent) |
SsmlCell |
SsmlSheetData.getCell(CellRef inCellRef) |
SsmlCell |
SsmlRow.getCellByColIndex(int inColIndex) |
SsmlCell |
SsmlRow.getFirstCellWithContent()
Returns the first cell in this row that contains content.
|
SsmlCell |
SsmlCell.mergeDown(int inValue) |
SsmlCell |
SsmlCell.mergeRight(int inValue) |
SsmlCell |
SsmlRow.setCell(int inColIndex,
String inValue) |
SsmlCell |
SsmlCell.setContent(CharSequence inContent) |
SsmlCell |
SsmlCell.setFormat(SsmlCellFormat inValue) |
SsmlCell |
SsmlCell.setFormula(String inValue) |
SsmlCell |
SsmlCell.setRef(CellRef inValue) |
SsmlCell |
SsmlCell.setTextRuns(List<SsmlTextRun> inValue) |
SsmlCell |
SsmlCell.setValue(double inValue) |
SsmlCell |
SsmlCell.setValue(float inValue) |
SsmlCell |
SsmlCell.setValue(int inValue) |
SsmlCell |
SsmlCell.setValue(long inValue) |
SsmlCell |
SsmlCell.setValue(Object inValue) |
SsmlCell |
SsmlCell.setValue(SsmlTextRun inValue) |
SsmlCell |
SsmlCell.setValue(String inValue) |
Modifier and Type | Method and Description |
---|---|
List<SsmlCell> |
SsmlRow.getCells() |
Modifier and Type | Method and Description |
---|---|
void |
SsmlRow.addCell(SsmlCell inValue) |
void |
SsmlSheetData.addCell(SsmlCell inValue) |
jataylor@hairyfatguy.com