CSharp_ClassLib.Classes.LanguageEntry Class Reference

Language entry class. More...

List of all members.

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.


Detailed Description

Language entry class.

Class that contains routines to handle language entries.

Author:
generalpd
Version:
Revision
1.1
Date:
2005-04-18

Bug:
none

Todo:
none
Remarks:
Last changed by:
Author
generalpd
in revision
Revision
1.1
on
Date
2005/05/03 12:59:55
Note:
Log
clsLanguageFile.cs,v
Revision 1.1 2005/05/03 12:59:55 generalpd first import

Definition at line 541 of file clsLanguageFile.cs.


Constructor & Destructor Documentation

CSharp_ClassLib::Classes.LanguageEntry::LanguageEntry  ) 
 

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.

CSharp_ClassLib::Classes.LanguageEntry::LanguageEntry string  category  ) 
 

Class constructor that inits all nesessary stuff.

Parameters:
category Category of this entry
  // Code example
 
  CSharp_ClassLib.Classes.LanguageEntry m_oEntry = new CSharp_ClassLib.Classes.LanguageEntry("MAINMENU_ITEMS");

Definition at line 585 of file clsLanguageFile.cs.

CSharp_ClassLib::Classes.LanguageEntry::LanguageEntry string  category,
string  id
 

Class constructor that inits all nesessary stuff.

Parameters:
category Category of this entry
id Id of this entry
  // Code example
 
  CSharp_ClassLib.Classes.LanguageEntry m_oEntry = new CSharp_ClassLib.Classes.LanguageEntry("MAINMENU_ITEMS", "FILE");

Definition at line 609 of file clsLanguageFile.cs.


Property Documentation

string CSharp_ClassLib::Classes.LanguageEntry::Category [get, set]
 

Returns or sets the category of this entry.

Parameters:
value The new category of this entry
Returns:
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.

string CSharp_ClassLib::Classes.LanguageEntry::ID [get, set]
 

Returns or sets the ID of this entry.

Parameters:
value The new ID of this entry
Returns:
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.

string CSharp_ClassLib::Classes.LanguageEntry::Value [get, set]
 

Returns or sets the value of this entry.

Parameters:
value The new value of this entry
Returns:
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.


The documentation for this class was generated from the following file:
Generated on Thu Jun 2 08:41:50 2005 for C# ClassLib by  doxygen 1.4.1