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

In This Topic
    Write Method (SettingNode)
    In This Topic
    Writes all settings to a file.
    Syntax
    public void Write( 
       string strFileName
    )
    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