Skip to content

Commit

Permalink
added rotation example in readme
Browse files Browse the repository at this point in the history
  • Loading branch information
AutoComplete1 committed Mar 8, 2023
1 parent 18b1ea0 commit 86c12fa
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ Apply conditional formatting of expression type to a cell:
```java
ws.style(0, 0).fillColor("FF8800").set(new ConditionalFormattingExpressionRule("LENB(A1)>1", true));
```
Rotate text in cell:
```java
ws.style(0, 0).rotation(90).set();
```
Set global default font:
```java
wb.setGlobalDefaultFont("Arial", 15.5);
Expand Down

0 comments on commit 86c12fa

Please sign in to comment.