Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

To modify and save an Admin enabled OPJ, you must first login with the Admin password. 

Protecting Graphs

Even though the script commands described here were implemented for workbook and worksheet, the Delete flag is general and can be used in graphs as well. For example:

//only graph4 will be kept
repeat 10 {win -t plot};
win -o graph4 {page -lw hex(400)};
doc -e P {win -c};

Script Example

The following script sets up a workbook with a locked data sheet, and the workbook is also protected from deletion. The OPJ can then be saved and shared with others who can view, graph, and analyze the data, but cannot edit or delete. Analysis results need to go to additional sheets, so routines such as Smooth should use settings to send output to another sheet, as the data sheet will be protected in this example from any modifications.

...

// Now you can save the OPJ and others can view data, graph, and also analyze
// Analysis results can go into new sheets, not new cols in same sheet