Insert into Table
From UBot Studio
(Difference between revisions)
(Created page with "Insert into Table is a Data Command. This inserts a blank row or column in front of a specified index (column or row number). == Example == <pre> navigat...") |
|||
Line 2: | Line 2: | ||
This inserts a blank row or column in front of a specified index (column or row number). | This inserts a blank row or column in front of a specified index (column or row number). | ||
+ | |||
+ | Table: refers to the table you would like to insert the column or row | ||
+ | |||
+ | Insert: the drop down allows you to choose whether you want to insert a row or a column | ||
+ | |||
+ | Index: refers to the position you want the row or column to be (row 1 or column 3 for example) | ||
== Example == | == Example == |
Revision as of 21:47, 22 March 2013
Insert into Table is a Data Command.
This inserts a blank row or column in front of a specified index (column or row number).
Table: refers to the table you would like to insert the column or row
Insert: the drop down allows you to choose whether you want to insert a row or a column
Index: refers to the position you want the row or column to be (row 1 or column 3 for example)
Example
navigate("http://www.fruitsinfo.com/tropical-fruits.php", "Wait") add list to list(%one, $scrape attribute(<href=w"http://www.fruitsinfo.com/*.php">, "innertext"), "Delete", "Global") add list to table as row(&test1, 0, 0, %one) plugin command("TableCommands.dll", "insert into table", &test1, "Row", 3)
Running the scripts will insert an empty row in the table.