
Classes | |
| class | Trans_NoTransformation |
| Class which does not do any transformation. More... | |
| class | Trans_ToLowerCase |
| Class which converts string to lower case. More... | |
| class | Trans_ToUpperCase |
| Class which converts string to upper case. More... | |
Public Member Functions | |
| abstract string | Transform (string text) |
| Method which is called to actually convert the string. | |
Static Public Attributes | |
| static readonly StringTransformer | None = new Trans_NoTransformation() |
| Object which does no transformation. | |
| static readonly StringTransformer | ToUpper = new Trans_ToUpperCase() |
| Object which converts a string to upper case. | |
| static readonly StringTransformer | ToLower = new Trans_ToLowerCase() |
| Object which converts a string to lower case. | |
| abstract string AgateLib.DisplayLib.StringTransformer.Transform | ( | string | text | ) | [pure virtual] |
Method which is called to actually convert the string.
| text |
Implemented in AgateLib.DisplayLib.StringTransformer.StringTransformer.Trans_NoTransformation, AgateLib.DisplayLib.StringTransformer.StringTransformer.Trans_ToUpperCase, and AgateLib.DisplayLib.StringTransformer.StringTransformer.Trans_ToLowerCase.
readonly StringTransformer AgateLib.DisplayLib.StringTransformer.None = new Trans_NoTransformation() [static] |
Object which does no transformation.
readonly StringTransformer AgateLib.DisplayLib.StringTransformer.ToLower = new Trans_ToLowerCase() [static] |
Object which converts a string to lower case.
readonly StringTransformer AgateLib.DisplayLib.StringTransformer.ToUpper = new Trans_ToUpperCase() [static] |
Object which converts a string to upper case.
|
AgateLib Awesome Game and Tool Engine Library |
|