- Procedure DataManagerFileNew(filename, UseAsDefault)
DataManagerFileNew
With the procedure DataManagerFileNew
you can create a new, empty
data file. On success, the new data file will be used as the current
data file for the project.
DataManagerFileNew(
filename, ! (input) a scalar string expression
[UseAsDefault] ! (optional, default 1) a scalar binary expression
)
Arguments
- filename
A string containing the name of the new data file (relative to the project directory)
- UseAsDefault
A binary value to indicate whether the new data file should be used as the default data file the next time the project is opened (value 1) or not (value 0).
Return Value
The procedure returns 1 on success, or 0 otherwise.
Note
This function is only applicable if the project option
Data_Management_style
is set toSingle_Data_Manager_file
.
See also
The procedures DataManagerFileOpen
, DataManagerFileGetCurrent
.