summaryrefslogtreecommitdiffstats
path: root/src/doc
diff options
context:
space:
mode:
authorAndrés M <andmarti1424@users.noreply.github.com>2021-03-07 11:44:24 -0300
committerGitHub <noreply@github.com>2021-03-07 11:44:24 -0300
commitf942458ecfbb8014146af1825311adb1b1cbfec1 (patch)
tree79cb2c602048c563409f18a7bff2a1fc9761e312 /src/doc
parenta2dd8aa00b87f40a678c8e7ff04cd6178693d77a (diff)
parentfbba833dbb2dc65d41c8275d73ee2ca1cf9c6ddb (diff)
Merge pull request #390 from mipmip/pr-yacc-morescriptcommands
Pr yacc morescriptcommands
Diffstat (limited to 'src/doc')
-rwxr-xr-xsrc/doc21
1 files changed, 15 insertions, 6 deletions
diff --git a/src/doc b/src/doc
index 9574e7f..c53730c 100755
--- a/src/doc
+++ b/src/doc
@@ -1595,22 +1595,31 @@ Commands for handling cell content:
EXECUTE "load /tmp/test.csv"
RECALC
- Recalculates a formulas in all cells
+ Recalculates a formulas in all cells.
GETNUM {[COL][ROW]}
- Get numeric value from cell and print to STDOUT
+ Get numeric value from cell and print to STDOUT.
GETSTRING {[COL][ROW]}
- Get text value from cell and print to STDOUT
+ Get text value from cell and print to STDOUT.
GETEXP {[COL][ROW]}
- Get expression from cell and print to STDOUT
+ Get expression from cell and print to STDOUT.
GETFORMAT {COL}
- Get format from cell and print to STDOUT
+ Get format from cell and print to STDOUT.
GETFMT {[COL][ROW]}
- Get format from cell and print to STDOUT
+ Get format from cell and print to STDOUT.
+
+ DELETECOL {COL}
+ Delete column. Example: DELETECOL B
+
+ DELETEROW {NUMBER}
+ Delete row, starts at 0. Example: DELETEROW 2 (deletes third row)
+
+ VALUEIZEALL
+ Converts expressions to values in all cells.
QUIT
Quits SC-IM.