API Help
Eplan.EplApi.Base Namespace / SchemeSetting Class / Init Method
Path to the settings node, for example USER.DXF.SCHEMES
Example

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

    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