Public Member Functions | |
| PreferencesEntry () | |
| Class constructor that inits all nesessary stuff. | |
| PreferencesEntry (string category) | |
| Class constructor that inits all nesessary stuff. | |
| PreferencesEntry (string category, string id) | |
| Class constructor that inits all nesessary stuff. | |
Properties | |
| string | ID |
| Returns or sets the ID of this entry. | |
| string | Category |
| Returns or sets the category of this entry. | |
| string | Value |
| Returns or sets the value of this entry. | |
Class that contains routines to handle preferences entries.
Definition at line 445 of file clsPreferencesFile.cs.
|
|
Class constructor that inits all nesessary stuff.
// Code example CSharp_ClassLib.Classes.PreferencesEntry m_oEntry = new CSharp_ClassLib.Classes.PreferencesEntry(); Definition at line 466 of file clsPreferencesFile.cs. |
|
|
Class constructor that inits all nesessary stuff.
// Code example CSharp_ClassLib.Classes.PreferencesEntry m_oEntry = new CSharp_ClassLib.Classes.PreferencesEntry("Temp"); Definition at line 489 of file clsPreferencesFile.cs. |
|
||||||||||||
|
Class constructor that inits all nesessary stuff.
// Code example CSharp_ClassLib.Classes.PreferencesEntry m_oEntry = new CSharp_ClassLib.Classes.PreferencesEntry("Temp", "Folder"); Definition at line 513 of file clsPreferencesFile.cs. |
|
|
Returns or sets the category of this entry.
// Code example m_oEntry[0].Category = "MAINMENU_ITEMS"; Console.WriteLine("m_oEntry[0] is now saved in category " + m_oEntry[0].Category); Definition at line 588 of file clsPreferencesFile.cs. |
|
|
Returns or sets the ID of this entry.
// Code example m_oEntry[0].ID = "FILE"; Console.WriteLine("This new ID of m_oEntry[0] is " + m_oEntry[0].ID); Definition at line 565 of file clsPreferencesFile.cs. |
|
|
Returns or sets the value of this entry.
// Code example m_oEntry[0].Value = "&File"; Console.WriteLine("The new value of entry m_oEntry[0] is: " + m_oEntry[0].Value); Definition at line 611 of file clsPreferencesFile.cs. |
1.4.1