Microscopic Traffic Simulator
Settings.Designer.cs
Go to the documentation of this file.
1 //------------------------------------------------------------------------------
2 // <auto-generated>
3 // This code was generated by a tool.
4 // Runtime Version:4.0.30319.42000
5 //
6 // Changes to this file may cause incorrect behavior and will be lost if
7 // the code is regenerated.
8 // </auto-generated>
9 //------------------------------------------------------------------------------
10 
11 namespace Microscopic_Traffic_Simulator.Properties {
12 
13 
14  [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
15  [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "12.0.0.0")]
16  internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
17 
18  private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
19 
20  public static Settings Default {
21  get {
22  return defaultInstance;
23  }
24  }
25 
26  [global::System.Configuration.UserScopedSettingAttribute()]
27  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
28  [global::System.Configuration.DefaultSettingValueAttribute("")]
29  public string UICulture {
30  get {
31  return ((string)(this["UICulture"]));
32  }
33  set {
34  this["UICulture"] = value;
35  }
36  }
37 
38  [global::System.Configuration.UserScopedSettingAttribute()]
39  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
40  [global::System.Configuration.DefaultSettingValueAttribute("")]
41  public string LastGeometricTopologyPath {
42  get {
43  return ((string)(this["LastGeometricTopologyPath"]));
44  }
45  set {
46  this["LastGeometricTopologyPath"] = value;
47  }
48  }
49 
50  [global::System.Configuration.UserScopedSettingAttribute()]
51  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
52  public int PreviousSeed {
53  get {
54  return ((int)(this["PreviousSeed"]));
55  }
56  set {
57  this["PreviousSeed"] = value;
58  }
59  }
60 
61  [global::System.Configuration.UserScopedSettingAttribute()]
62  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
63  [global::System.Configuration.DefaultSettingValueAttribute("True")]
64  public bool PreviousSeedNull {
65  get {
66  return ((bool)(this["PreviousSeedNull"]));
67  }
68  set {
69  this["PreviousSeedNull"] = value;
70  }
71  }
72 
73  [global::System.Configuration.UserScopedSettingAttribute()]
74  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
75  [global::System.Configuration.DefaultSettingValueAttribute("True")]
76  public bool IsSeedSettingAutomatic {
77  get {
78  return ((bool)(this["IsSeedSettingAutomatic"]));
79  }
80  set {
81  this["IsSeedSettingAutomatic"] = value;
82  }
83  }
84 
85  [global::System.Configuration.UserScopedSettingAttribute()]
86  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
87  [global::System.Configuration.DefaultSettingValueAttribute("False")]
88  public bool IsPreviousSeedUsed {
89  get {
90  return ((bool)(this["IsPreviousSeedUsed"]));
91  }
92  set {
93  this["IsPreviousSeedUsed"] = value;
94  }
95  }
96 
97  [global::System.Configuration.UserScopedSettingAttribute()]
98  [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
99  [global::System.Configuration.DefaultSettingValueAttribute("")]
100  public string PathToParameters {
101  get {
102  return ((string)(this["PathToParameters"]));
103  }
104  set {
105  this["PathToParameters"] = value;
106  }
107  }
108  }
109 }
string LastGeometricTopologyPath
Path of last opened geometric topology file.
Definition: Settings.cs:14
bool IsSeedSettingAutomatic
Determines whether the seed is initialized automatically.
Definition: Settings.cs:41
int PreviousSeed
Seed used in the previous simulation run.
Definition: Settings.cs:23
string PathToParameters
Path to last used file with parameters.
Definition: Settings.cs:59
bool PreviousSeedNull
Determines whether any simulation was performed (whether any previous seed is available).
Definition: Settings.cs:32
bool IsPreviousSeedUsed
Determines whether the seed from previous simulation run is used.
Definition: Settings.cs:50