Save the condition settings.
Ret = ExportSettingFile (FilePath, Arg1)
FilePath [ VB.NET : String] [ C++ : BSTR ] [ C# : string]
Specify the file path.
Arg1 [ VB.NET : Integer ] [ C++ : long ] [ C# : int ]
Fixed to 0. (Reserved)
Ret [ VB.NET : Integer ] [ C++ : long ] [ C# : int ]
Return Value |
Description |
0 |
Normal completed |
10002 |
The setting file path is invalid. |
The others (See also: Error Code List)
Save the condition settings.
This function can be executed even if the device is in operation.
Save the settings in "SettingFile.ini".
VB.NET |
Dim Ret As Long Ret = c_fgen.ExportSettingFile("SettingFile.ini", 0)
|
C++ |
long Ret; ICWaveformGeneratorPtr c_fgen; Ret = c_fgen->ExportSettingFile(L"SettingFile.ini", 0);
|
C# |
int Ret; Ret = c_fgen.ExportSettingFile("SettingFile.ini", 0);
|