Package ch.rabanti.nanoxlsx4j
Class Shortener
java.lang.Object
ch.rabanti.nanoxlsx4j.Shortener
Class to provide access to the current worksheet with a shortened syntax
Note: The WS object can be null if the workbook was created without a worksheet. The object will be available as soon as the current worksheet is defined
Note: The WS object can be null if the workbook was created without a worksheet. The object will be available as soon as the current worksheet is defined
- Author:
- Raphael Stoeckli
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
down()
Moves the cursor one row downvoid
down
(int numberOfRows) Moves the cursor the number of defined rows downvoid
down
(int numberOfRows, boolean keepColumnPosition) Moves the cursor the number of defined rows downvoid
Sets a formula into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)void
Sets a formula with style into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)void
left()
Moves the cursor one column to the leftvoid
left
(int numberOfColumns) Moves the cursor the number of defined columns to the leftvoid
left
(int numberOfColumns, boolean keepRowPosition) Moves the cursor the number of defined columns to the leftvoid
right()
Moves the cursor one column to the rightvoid
right
(int numberOfColumns) Moves the cursor the number of defined columns to the rightvoid
right
(int numberOfColumns, boolean keepRowPosition) Moves the cursor the number of defined columns to the rightvoid
setCurrentWorksheet
(Worksheet worksheet) Sets the worksheet accessed by the shortenervoid
up()
Moves the cursor one row upvoid
up
(int numberOfRows) Moves the cursor the number of defined rows upvoid
up
(int numberOfRows, boolean keepColumnPosition) Moves the cursor the number of defined rows upvoid
Sets a value into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)void
Sets a value with style into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)
-
Constructor Details
-
Shortener
Constructor with workbook reference- Parameters:
reference
- Workbook reference
-
-
Method Details
-
setCurrentWorksheet
Sets the worksheet accessed by the shortener- Parameters:
worksheet
- Current worksheet
-
value
Sets a value into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)- Parameters:
value
- Value to set- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
value
Sets a value with style into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)- Parameters:
value
- Value to setstyle
- Style to set- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
formula
Sets a formula into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)- Parameters:
formula
- Formula to set- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
formula
Sets a formula with style into the current cell and moves the cursor to the next cell (column or row depending on the defined cell direction)- Parameters:
formula
- Formula to setstyle
- Style to set- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
down
public void down()Moves the cursor one row down- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
down
public void down(int numberOfRows) Moves the cursor the number of defined rows down- Parameters:
numberOfRows
- Number of rows to move- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
down
public void down(int numberOfRows, boolean keepColumnPosition) Moves the cursor the number of defined rows down- Parameters:
numberOfRows
- Number of rows to movekeepColumnPosition
- If true, the column position is preserved, otherwise set to 0- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
up
public void up()Moves the cursor one row up- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was definedRangeException
- Throws a RangeException if the row number is below 0
-
up
public void up(int numberOfRows) Moves the cursor the number of defined rows up- API Note:
- Values can be also negative. However, this is the equivalent of the function
down(int)
} - Parameters:
numberOfRows
- Number of rows to move- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was definedRangeException
- Throws a RangeException if the row number is below 0
-
up
public void up(int numberOfRows, boolean keepColumnPosition) Moves the cursor the number of defined rows up- API Note:
- Values can be also negative. However, this is the equivalent of the function
down(int)
} - Parameters:
numberOfRows
- Number of rows to movekeepColumnPosition
- If true, the column position is preserved, otherwise set to 0- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was definedRangeException
- Throws a RangeException if the row number is below 0
-
right
public void right()Moves the cursor one column to the right- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
right
public void right(int numberOfColumns) Moves the cursor the number of defined columns to the right- Parameters:
numberOfColumns
- Number of columns to move- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
right
public void right(int numberOfColumns, boolean keepRowPosition) Moves the cursor the number of defined columns to the right- Parameters:
numberOfColumns
- Number of columns to movekeepRowPosition
- If true, the row position is preserved, otherwise set to 0- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was defined
-
left
public void left()Moves the cursor one column to the left- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was definedRangeException
- Throws a RangeException if the column number is below 0
-
left
public void left(int numberOfColumns) Moves the cursor the number of defined columns to the left- API Note:
- Values can be also negative. However, this is the equivalent of the function
right(int)
} - Parameters:
numberOfColumns
- Number of columns to move- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was definedRangeException
- Throws a RangeException if the column number is below 0
-
left
public void left(int numberOfColumns, boolean keepRowPosition) Moves the cursor the number of defined columns to the left- API Note:
- Values can be also negative. However, this is the equivalent of the function
right(int)
} - Parameters:
numberOfColumns
- Number of columns to movekeepRowPosition
- If true, the row position is preserved, otherwise set to 0- Throws:
WorksheetException
- Throws a WorksheetException if no worksheet was definedRangeException
- Throws a RangeException if the column number is below 0
-