Package ch.rabanti.nanoxlsx4j
Class Column
java.lang.Object
ch.rabanti.nanoxlsx4j.Column
Class representing a column of a worksheet
- Author:
- Raphael Stoeckli
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the column addressGets the default style of the columnint
Gets the column numberfloat
getWidth()
Gets the width of the columnboolean
Gets whether auto filter is enabled on the columnboolean
isHidden()
Gets whether the column is hidden or visiblevoid
setAutoFilter
(boolean hasAutoFilter) Sets whether auto filter is enabled on the columnvoid
setColumnAddress
(String columnAddress) Sets the column addresssetDefaultColumnStyle
(Style defaultColumnStyle) Sets the default style of the columnsetDefaultColumnStyle
(Style defaultColumnStyle, boolean unmanaged) Sets the default style of the columnvoid
setHidden
(boolean isHidden) Sets whether the column is hidden or visiblevoid
setNumber
(int number) Sets the column numbervoid
setWidth
(float width) Sets the width of the column
-
Constructor Details
-
Column
Constructor with column address- Parameters:
columnAddress
- Column address (A to XFD)
-
Column
public Column(int number) Constructor with column number- Parameters:
number
- Column number (zero-based, 0 to 16383)
-
-
Method Details
-
setAutoFilter
public void setAutoFilter(boolean hasAutoFilter) Sets whether auto filter is enabled on the column- Parameters:
hasAutoFilter
- If true, the column has auto filter applied, otherwise not
-
getColumnAddress
Gets the column address- Returns:
- Column address (A to XFD)
-
setColumnAddress
Sets the column address- Parameters:
columnAddress
- Column address (A to XFD)
-
getNumber
public int getNumber()Gets the column number- Returns:
- Column number (0 to 16383)
-
setNumber
public void setNumber(int number) Sets the column number- Parameters:
number
- Column number (0 to 16383)
-
getWidth
public float getWidth()Gets the width of the column- Returns:
- Width of the column
-
setWidth
public void setWidth(float width) Sets the width of the column- Parameters:
width
- Width of the column
-
hasAutoFilter
public boolean hasAutoFilter()Gets whether auto filter is enabled on the column- Returns:
- If true, the column has auto filter applied, otherwise not
-
isHidden
public boolean isHidden()Gets whether the column is hidden or visible- Returns:
- If true, the column is hidden, otherwise visible
-
setHidden
public void setHidden(boolean isHidden) Sets whether the column is hidden or visible- Parameters:
isHidden
- If true, the column is hidden, otherwise visible
-
getDefaultColumnStyle
Gets the default style of the column- Returns:
- Default style
-
setDefaultColumnStyle
Sets the default style of the column- Parameters:
defaultColumnStyle
- Style to assign as default column style. Can be null (to clear)- Returns:
- If the passed style already exists in the repository, the existing one will be returned, otherwise the passed one
-
setDefaultColumnStyle
Sets the default style of the column- Parameters:
defaultColumnStyle
- Style to assign as default column style. Can be null (to clear)unmanaged
- Internally used: If true, the style repository is not invoked and only the style object of the column is updated. Do not use!- Returns:
- If the passed style already exists in the repository, the existing one will be returned, otherwise the passed one
-