Public Member Functions | |
| LanguageEntry () | |
| Class constructor that inits all nesessary stuff. | |
| LanguageEntry (string category) | |
| Class constructor that inits all nesessary stuff. | |
| LanguageEntry (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 language entries.
Definition at line 541 of file clsLanguageFile.cs.
|
|
Class constructor that inits all nesessary stuff.
// Code example CSharp_ClassLib.Classes.LanguageEntry m_oEntry = new CSharp_ClassLib.Classes.LanguageEntry(); Definition at line 562 of file clsLanguageFile.cs. |
|
|
Class constructor that inits all nesessary stuff.
// Code example CSharp_ClassLib.Classes.LanguageEntry m_oEntry = new CSharp_ClassLib.Classes.LanguageEntry("MAINMENU_ITEMS"); Definition at line 585 of file clsLanguageFile.cs. |
|
||||||||||||
|
Class constructor that inits all nesessary stuff.
// Code example CSharp_ClassLib.Classes.LanguageEntry m_oEntry = new CSharp_ClassLib.Classes.LanguageEntry("MAINMENU_ITEMS", "FILE"); Definition at line 609 of file clsLanguageFile.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 684 of file clsLanguageFile.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 661 of file clsLanguageFile.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 707 of file clsLanguageFile.cs. |
1.4.1