Interface IExcelColumn
public interface IExcelColumn
Represents an Excel column.
-
Method Summary
Modifier and TypeMethodDescriptiongetCell
(int rowIndex) Returns the cell at the specified row index in this Excel column.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
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 Details
-
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
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
Sets the default cell type for all cells in this Excel column.- Parameters:
type
- the cell type to set
-
getCell
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
-