 | DataFrameSave(String, Boolean, Boolean, String, String, String, String) Method |
Exports the contents of this data frame to a text file.
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic void Save(
string filename,
bool exportHeader,
bool exportRowKeys,
string delimiter,
string numericFormat,
string integerFormat,
string dateTimeFormat
)
Public Sub Save (
filename As String,
exportHeader As Boolean,
exportRowKeys As Boolean,
delimiter As String,
numericFormat As String,
integerFormat As String,
dateTimeFormat As String
)
public:
void Save(
String^ filename,
bool exportHeader,
bool exportRowKeys,
String^ delimiter,
String^ numericFormat,
String^ integerFormat,
String^ dateTimeFormat
)
member Save :
filename : string *
exportHeader : bool *
exportRowKeys : bool *
delimiter : string *
numericFormat : string *
integerFormat : string *
dateTimeFormat : string -> unit
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