Action group: Word
The action saves the table from the document in the Table type variable.
Action icon
Parameter | Description |
---|---|
Context | The unique session identifier of the session to which the action will be applied. |
Table number | Serial number of the table in the document. |
Heading | If the value is "true", the table header will be inserted into the document along with its rows. |
Remove duplicate header | If the value is "true", indexes will be added to the same column names in the header of the resulting table. |
Result - result table.
Property | Description | Type | Filling example | Mandatory field |
Parameters | ||||
Word-document | An instance of the Word document. | Robin.Word | Word context | Yes |
Table number | Serial number of the table in the document. Order starts at 1. Default is "1" | Robin.Numeric | No | |
Heading | If the value is "true", the table header will be inserted into the document along with its rows. | Robin.Boolean | true | No |
Remove duplicate header | If the value is "true", indexes will be added to the same column names in the header of the resulting table. Numbering starts from 1. | Robin.Boolean | true | No |
Results | ||||
Result | Result table | Robin.DataTable |
For "Heading" checkbox:
Parameter in action: if true, the action will save the first row of the source table into the header of the returned table value, i.e. it will not be a row with the table contents.
If "false", the first row will leave the table content part and the heading will use the default names - 1, 2, 3, etc.
Example:
Get the spreadsheet:
With this parameter enabled, the log will show "Columns: 3; rows: 2" because the first row of the taken area has become a header with the column names "No.", "Title", and "Tests". These headings cannot be accessed as a row of data to read, but you can use the column names to access a specific cell or column (actions from the Tables group). If the option is off, the log will show "Columns: 3; rows: 3", the column names in the header will be "1", "2" and "3".
For "Remove duplicate header" checkbox:
You have a table:
Save the table from the Word-document to a Table type variable.
Use the "Open document", "Get table", "Close document" actions.
The program robot completed successfully. The table was obtained.