Interface IExcelColumn
-
public interface IExcelColumn
Represents an Excel column.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description IExcelCell
getCell(int rowIndex)
Returns the cell at the specified row index in this Excel column.IExcelCellStyle
getStyle()
Returns the cell style of all cells in this Excel column.void
setAutoSizeColumn(boolean autoSizeColumn)
Sets whether the Excel columns should be resized automatically, or not.void
setCellType(IExcelCell.CellType type)
Sets the default cell type for all cells in this Excel column.void
setStyle(IExcelCellStyle style)
Sets the default style for all cells in this Excel column.void
setWidth(short width)
Sets the width of this Excel column to the specified value.
-
-
-
Method Detail
-
setAutoSizeColumn
void setAutoSizeColumn(boolean autoSizeColumn)
Sets whether the Excel columns should be resized automatically, or not.- Parameters:
autoSizeColumn
- true if the column should resize automatically, false if it should not
-
getStyle
IExcelCellStyle getStyle()
Returns the cell style of all cells in this Excel column.- Returns:
- the cell style
-
setStyle
void setStyle(IExcelCellStyle style)
Sets the default style for all cells in this Excel column.- Parameters:
style
- the cell style to set
-
setWidth
void setWidth(short width)
Sets the width of this Excel column to the specified value.- Parameters:
width
- the width to set
-
setCellType
void setCellType(IExcelCell.CellType type)
Sets the default cell type for all cells in this Excel column.- Parameters:
type
- the cell type to set
-
getCell
IExcelCell getCell(int rowIndex)
Returns the cell at the specified row index in this Excel column. If no cell exists yet, a new one is created and returned.- Parameters:
rowIndex
- the row index to return- Returns:
- the cell
-
-