Modifier and Type | Method and Description |
---|---|
Style |
Sheet.getDefaultColumnCellStyle(int column)
Gets the default cell style of a specific column.
|
Style |
Range.getStyle()
Returns the formating style of the top-left cell in the range.
|
Style |
ConditionalFormat.getStyleApplied() |
Style[][] |
Range.getStyles()
Returns the rectangular grid of formating styles for this range.
|
Modifier and Type | Method and Description |
---|---|
static ConditionalFormat |
ConditionalFormat.conditionWhenValueIsBetween(Style apply,
double init,
double end) |
static ConditionalFormat |
ConditionalFormat.conditionWhenValueIsEqual(Style apply,
double value)
Create a ConditionalFormat rule where the boolean condition is "values equals to X".
|
static ConditionalFormat |
ConditionalFormat.conditionWhenValueIsEqual(Style apply,
String value) |
static ConditionalFormat |
ConditionalFormat.conditionWhenValueIsGreater(Style apply,
double value)
Create a ConditionalFormat rule where the boolean condition is "values greater than X".
|
static ConditionalFormat |
ConditionalFormat.conditionWhenValueIsLower(Style apply,
double value)
Create a ConditionalFormat rule where the boolean condition is "values lower than X".
|
void |
Sheet.setDefaultColumnCellStyle(int column,
Style defaultColumnCellStyle)
Sets the default cell style of a specific column.
|
void |
Range.setStyle(Style style)
Set a format style for all the cells of the range
|
void |
Range.setStyles(Style... style)
Set a set of format styles to the range.
|
void |
Range.setStyles(Style[][] style)
Set a set of styles to the range.
|
Copyright © 2023. All rights reserved.