|  Configuring the Engine | Table of Content | Configuration File  | 
| Change Engine Settings Programmatically | 
EngineSettings class provides a way to change settings of the Engine programmatically.
 Example
ExampleThe sample below demonstrates the common approach customizing the Engine behavior by updating the field values of the EngineSettings class.
EngineSettings settings = new EngineSettings(); settings.LogDirectory = "C:\\Users\\FixEngine\\Logs"; Engine.Init(settings);
Dim settings As EngineSettings = New EngineSettings() settings.LogDirectory = "C:/Users/FixEngine/Logs" Engine.Init(settings)