Enum CasingMethod
- Namespace
- Cuemon
- Assembly
- Cuemon.Core.dll
Specifies ways that a string must be converted in terms of casing.
public enum CasingMethod
Fields
Default = 0
Indicates default behavior which is leaving the casing unaltered, hence allowing mixed casing.
LowerCase = 1
Indicates that all characters will be converted to lowercase.
TitleCase = 3
Indicates that characters will be converted to Title Case.
UpperCase = 2
Indicates that all characters will be converted to UPPERCASE.