CaseNormalization Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
How to normalize the case of words.
public enum CaseNormalization
type CaseNormalization =
Public Enum CaseNormalization
- Inheritance
-
CaseNormalization
Fields
Name | Value | Description |
---|---|---|
Default | 0 | Use the default from the DefaultPrompt. |
InitialUpper | 1 | First letter of each word is capitalized |
Lower | 2 | Normalize words to lower case. |
Upper | 3 | Normalize words to upper case. |
None | 4 | Don't normalize words. |