Cells
Script actions to create and manipulate Excel documents (workbooks).
CalculateCellFormula
Calculates the formula of the cell.
Syntax
Parameters
Cell The cell which contains the formula to calculate. Type: CellsCell
Return Type
Void
CalculateWorkbookFormula
Calculates all formulas in the workbook.
Syntax
Parameters
Workbook The workbook which contains the formulas to calculate. Type: CellsWorkbook
Return Type
Void
CalculateWorksheetFormula
Calculates all formulas in the worksheet.
Syntax
Parameters
Worksheet The worksheet which contains the formulas to calculate. Type: CellsWorksheet
Return Type
Void
CreateWorkspace
Creates and returns a new workbook. The workbook has the following fields (accessible through GetValue/ SetValue):
Worksheets as List (Get)
Warning: The return value is not serializable (causes input request errors)!
Syntax
Parameters
This action does not have any parameter.
Return Type
CellsWorkbook
LoadWorkbook
Loads and returns an existing workbook. The workbook has the following fields (accessible through GetValue/ SetValue):
Worksheets as List (Get)
Warning: The return value is not serializable (causes input request errors)!
Syntax
Parameters
Format as String (optional): The format of the workbook: Xls, Xlsx. Analyses the given document if format is omitted.
Workbook The document to load the workbook from. Type: Document
Format (optional) The format of the workbook. Analyses the given document if format is omitted. Type: String
Return Type
CellsWorkbook
SaveWorkbook
Saves a workbook and returns it as a document.
Syntax
Parameters
Workbook The workbook to save. Type: CellsWorkbook
Name The name of the document. Type: String
Format The format of the workbook: Xls, Xlsx. Type: String
Return Type
Document
InsertWorksheets
Inserts worksheets into a workbook.
Syntax
Parameters
Workbook The workbook to insert the worksheets into. Type: CellsWorkbook
Index (optional) The insertion index of the worksheets (default 0). Type: Int
Count (optional) The amount of worksheets to insert (default 1). Type: Int
GetWorksheetByIndex
Gets a worksheet by index. The worksheet has the following fields (accessible through GetValue/SetValue):
DisplayRightToLeft as Boolean (Get/ Set)
DisplayZeros as Boolean (Get/ Set)
FirstVisibleColumn as Int (Get/ Set)
FirstVisibleRow as Int (Get/ Set)
Index as Int (Get)
IsSelected as Boolean (Get/ Set)
IsVisible as Boolean (Get/ Set)
Name as String (Get/ Set)
TabColor as String (Get/ Set): HTML color (e.g. #FFFFFF)
The return value is not serializable (causes input request errors)!
Syntax
Parameters
Workbook The workbook to get the worksheet from. Type: CellsWorkbook
Index The index of the worksheet. Type: Int
Return Type
CellsWorksheet
GetWorksheetByName
Gets a worksheet by name. The worksheet has the following fields (accessible through GetValue/ SetValue):
DisplayRightToLeft as Boolean (Get/ Set)
DisplayZeros as Boolean (Get/ Set)
FirstVisibleColumn as Int (Get/ Set)
FirstVisibleRow as Int (Get/ Set)
Index as Int (Get)
IsSelected as Boolean (Get/ Set)
IsVisible as Boolean (Get/ Set)
Name as String (Get/ Set)
TabColor as String (Get/ Set): HTML color (e.g. #FFFFFF)
The return value is not serializable (causes input request errors)!
Syntax
Parameters
Workbook The workbook to get the worksheet from. Type: CellsWorkbook
Name The name of the worksheet. Type: String
Return Type
CellsWorksheet
RemoveWorksheets
Removes worksheets in a workbook.
Syntax
Parameters
Workbook The workbook to remove the worksheets from. Type: CellsWorkbook
Index The starting index of the removal. Type: Int
Count (optional) The amount of worksheets to remove (default 1). Type: Int
Return Type
Void
CellsStyle
Creates a new style. The style has the following fields (accessible through GetValue/ SetValue):
BorderAll as CellsBorder (Set)
BorderOutline as CellsBorder (Set)
BorderInside as CellsBorder (Set)
BorderLeft as CellsBorder (Get/ Set)
BorderRight as CellsBorder (Get/ Set)
BorderTop as CellsBorder (Get/ Set)
BorderBottom as CellsBorder (Get/ Set)
BorderDiagonalDown as CellsBorder (Get/ Set)
BorderDiagonalUp as CellsBorder (Get/ Set)
BorderVertical as CellsBorder (Get/ Set)
BorderHorizontal as CellsBorder (Get/ Set)
FillColor as String (Get/ Set): HTML color (e.g. #FFFFFF)
FontColor as String (Get/ Set): HTML color (e.g. #FFFFFF)
FontIsBold as Boolean (Get/ Set)
FontIsItalic as Boolean (Get/ Set)
FontIsStrikeout as Boolean (Get/ Set)
FontIsSuperscript as Boolean (Get/ Set)
FontIsSubscript as Boolean (Get/ Set)
FontUnderline as String (Get/ Set): Single, Double, Accounting, DoubleAccounting
FontName as String (Get/ Set)
FontSize as Int (Get/ Set)
HorizontalAlignment as String (Get/ Set): Bottom, Center, Distributed, Fill, General, Justify, Left, Right and Top
IsLocked as Boolean (Get/ Set)
IsTextWrapped as Boolean (Get/ Set)
Name as String (Get/ Set)
Number as Int (Get/ Set)
ShrinkToFit as Boolean (Get/ Set)
TextDirection as String (Get/ Set): Context, LeftToRight and RightToLeft
VerticalAlignment as String (Get/ Set): Bottom, Center, Distributed, Fill, General, Justify, Left, Right and Top
The return value is not serializable (causes input request errors)!
Syntax
Parameters
This action does not have any parameter
Return Type
CellsStyle
CellsBorder
Creates a new border. The border has the following fields (accessible through GetValue/ SetValue):
Color as String (Get/ Set): HTML color (e.g. #FFFFFF)
LineStyle as String (Get/ Set): Thin, Medium, Dashed, Dotted, Thick, Double, Hair, MediumDashed, DashDot, MediumDashDot, DashDotDot, MediumDashDotDot and SlantedDashDot
The return value is not serializable (causes input request errors)!
Syntax
Parameters
This action does not have any parameter
Return Type
CellsBorder
ReadColumn
Reads data from a column.
Syntax
Parameters
Worksheet The worksheet with the column to read from. Type: CellsWorksheet
ColumnIndex The column index to read from. Type: Int
RowIndex (optional) The starting row index (default 0). Type: Int
RowCount (optional) The amount of rows to read from (default all upon an empty row). Type: Int
Return Type
List<Any>
ReadWorksheet
Reads data from a worksheet. The first row must contain the data field names.
Syntax
Parameters
Worksheet The worksheet to read from. Type: CellsWorksheet
RowIndex (optional) The starting row index (default 0). The first row must contain the field names. Type: Int
ColumnIndex (optional) The starting column index (default 0). Type: Int
RowCount (optional) The amount of rows to read from (default all upon an empty row). Type: Int
ColumnCount (optional) The amount of columns to read from (default all upon an empty column). Type: Int
Return Type
List<Dictionary<String,Any>>
ReadRow
Reads data from a row.
Syntax
Parameters
Worksheet The worksheet with the row to read from. Type: CellsWorksheet
RowIndex The row index to read from. Type: Int
ColumnIndex (optional) The starting column index (default 0). Type: Int
ColumnCount (optional) The amount of columns to read from (default all upon an empty column). Type: Int
Return Type
List<Any>
GetCellByIndex
Gets a cell by row and column index. The cell has the following fields (accessible through GetValue/SetValue):
Column as CellsColumn (Get)
Formula as String (Get/ Set)
HtmlString as String (Get/ Set)
IsErrorValue as Boolean (Get)
IsFormula as Boolean (Get)
IsMerged as Boolean (Get)
Name as String (Get)
Row as CellsRow (Get)
Style as CellsStyle (Get/ Set)
Value as Any (Get/ Set)
The return value is not serializable (causes input request errors)!
Syntax
Parameters
Worksheet The worksheet to get the cell from. Type: CellsWorksheet
RowIndex The index of the row. Type: Int
ColumnIndex The index of the column. Type: Int
Return Type
CellsCell
GetCellByName
Gets a cell by name (e.g. A1 or Z5). The cell has the following fields (accessible through GetValue/SetValue):
Column as CellsColumn (Get)
Formula as String (Get/ Set)
HtmlString as String (Get/ Set)
IsErrorValue as Boolean (Get)
IsFormula as Boolean (Get)
IsMerged as Boolean (Get)
Name as String (Get)
Row as CellsRow (Get)
Style as CellsStyle (Get/ Set)
Value as Any (Get/ Set)
The return value is not serializable (causes input request errors)!
Syntax
Parameters
Worksheet The worksheet to get the cell from. Type: CellsWorksheet
Name The name of the cell (e.g. A1 or Z5). Type: String
Return Type
CellsCell
MergeCells
Merges cells identified by range.
Syntax
Parameters
Worksheet The worksheet where to merge the cells. Type: CellsWorksheet
RowIndex The index of the starting row. Type: Int
ColumnIndex The index of the starting column. Type: Int
RowCount The amount of rows to merge. Type: Int
ColumnCount The amount of columns to merge. Type: Int
Return Type
Void
UnmergeCells
Unmerges cells identified by range.
Syntax
Parameters
Worksheet The worksheet where to unmerge the cells. Type: CellsWorksheet
RowIndex The index of the starting row. Type: Int
ColumnIndex The index of the starting column. Type: Int
RowCount The amount of rows to unmerge. Type: Int
ColumnCount The amount of columns to unmerge. Type Int
Return Type
Void
Last updated