public interface IExcelColumn
| Modifier and Type | Method and Description | 
|---|---|
IExcelCell | 
getCell(int rowIndex)
Get cell in this column at given row index. 
 | 
IExcelCellStyle | 
getStyle()  | 
void | 
setAutoSizeColumn(boolean autoSizeColumn)  | 
void | 
setCellType(IExcelCell.CellType type)
Set cell type for each cell in this column 
 | 
void | 
setStyle(IExcelCellStyle style)
Set default style for the whole column 
 | 
void | 
setWidth(short width)
Set width for each cell in this column 
 | 
void setAutoSizeColumn(boolean autoSizeColumn)
autoSizeColumn - indicates if the column should autosizeIExcelCellStyle getStyle()
void setStyle(IExcelCellStyle style)
style - the stylevoid setWidth(short width)
width - the widthvoid setCellType(IExcelCell.CellType type)
type - the cell type.IExcelCell getCell(int rowIndex)
rowIndex - the row index.