Enums/HeadingType.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
enum HeadingType { Heading1 Heading2 Heading3 Heading4 Heading5 Heading6 Heading7 Heading8 Heading9 <# // The following headings appear in the same list in Word but they do not work in the same way (they are character based headings not paragraph based headings) // NoSpacing // Title Subtitle // Quote IntenseQuote // Emphasis IntenseEmphasis // Strong // ListParagraph // SubtleReference IntenseReference // BookTitle #> } |