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