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

Init Method (SchemeSetting)
Initializes object with a settings node path.
Syntax
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