TmdlCasingStyle 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.
An enumeration that indicates the casing in which a keyword, e.g. a property-name or an object-type, is written in the TMDL text.
public enum TmdlCasingStyle
type TmdlCasingStyle =
Public Enum TmdlCasingStyle
- Inheritance
-
TmdlCasingStyle
Fields
Name | Value | Description |
---|---|---|
CamelCase | 1 | The keyword is written in camel-case mode; the first word is all lower-case, the remaining words are without any change. |
Pascalcase | 2 | The keyword is written in Pascal-case letters; the first letter in each word is upper-case, the remaining letters in each word in lower-case. |
LowerCase | 3 | The keyword is written only with lower-case letters. |