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

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