Doc-obj
LabTalk Object Type:
The doc object provides read only access to general project properties.
Returns 1 if the Audit Log is enabled for the current project. Else returns 0.
Total number of files that have been dropped onto the Origin workspace. The OnOpen section in DOFILE.OGS will run once for each dropped file; dropIndex will indicate which file is being processed and will increment from 1 to dropCount.
When one or more data files are dropped into Origin, this property holds the number of files dropped.
When one or more data files are dropped onto a graph, this property holds the layer number the data is added to. If the data is dropped onto a worksheet, this property is set to 1. If the drop location is inside the Origin program window but outside of a worksheet or graph window, this property is set to 0. If the drop location is on the Origin program icon, this property is set to -1.
When one or more data files are dropped onto a graph or worksheet window, this property holds the window name. If the files aren't dropped on a window, or if the files are dropped onto the Origin program icon, then this property is set to "".
This property has a value of 1 if the project is a new project (not loaded from a file) and has never been saved. Once the project is saved, this property becomes 0.
Returns the name of the nth worksheet. n is the order in which the worksheets were created in the project (1, 2, etc.).
This method is used to get the number of project ranges. These ranges might have been generated by analysis operations, data import, etc. RangeType is an optional variable; if no value is assigned, the output will be the total number of data ranges. RangeType=16 outputs the number of empty ranges. RangeType=32 outputs the number of ranges generated by "Auto Fill".
Note: use list rng command to list details for all project ranges.
If Data1 is the first worksheet created in the project, then the following (Script window) script returns Data1.
%Z = doc.wksname1$; %Z = ;