Eplan Platform API
Eplan.EplApi.DataModel Namespace / ProjectSchemeSetting Class / Init Method / Init(String) Method
Path to the settings node, for example USER.DXF.SCHEMES
Example

In This Topic
    Init(String) Method
    In This Topic
    Initializes object with a settings node path.
    Syntax
    public override void Init( 
       string strScheme
    )
    public:
    void Init( 
       String^ strScheme
    ) override 

    Parameters

    strScheme
    Path to the settings node, for example USER.DXF.SCHEMES
    Exceptions
    ExceptionDescription
    Thrown when scheme with given settings node path can not be found.
    Example
    Creating a SchemeSetting object and initializing it with a settings node path
    SchemeSetting oSchemeSetting = new SchemeSetting();
    oSchemeSetting.Init("USER.DXF.SCHEMES");
    
    
    See Also