Click or drag to resize

DataFrameSave(String, Boolean, Boolean, String, String, String, String) Method

Exports the contents of this data frame to a text file.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public void Save(
	string filename,
	bool exportHeader,
	bool exportRowKeys,
	string delimiter,
	string numericFormat,
	string integerFormat,
	string dateTimeFormat
)

Parameters

filename  String
The output filename.
exportHeader  Boolean
A boolean value indicated whether or not the saved file should include column headers.
exportRowKeys  Boolean
A boolean value indicated whether or not the saved file should include row keys.
delimiter  String
The column delimiter.
numericFormat  String
Numeric format such as "F3"
integerFormat  String
Integer format such as "C"
dateTimeFormat  String
DateTime format such as "MMM ddd d HH:mm yyyy"
See Also