API Help
Eplan.EplApi.Base Namespace / SettingNode Class / Write Method
Indicates the full file name of the settings file.
Example

Write Method (SettingNode)
Writes all settings to a file.
Syntax
public void Write( 
   string strFileName
)

Parameters

strFileName
Indicates the full file name of the settings file.
Exceptions
ExceptionDescription
Thrown when strFileName is null.
Thrown when strFileName is empty.
The object has not been initialized correctly.
The function failed.
Example
Example how to export main settings node by SettingNode:
SettingNode oSettingNode = new SettingNode("USER");
oSettingNode.Write("G:\\temp\\1.xml");
See Also