PageRenderTime 43ms CodeModel.GetById 20ms RepoModel.GetById 1ms app.codeStats 0ms

/Source Code/ExperimentalProjection/Enumerations.vb

#
Visual Basic | 34 lines | 31 code | 3 blank | 0 comment | 0 complexity | 77c6678c5f9e1b552c013c4160883cb5 MD5 | raw file
  1. Public Enum TextEffect
  2. None
  3. InnerOutline
  4. OuterOutline
  5. Shadow
  6. OutlineAndShadow
  7. OutlinedBox
  8. FilledBox
  9. End Enum
  10. Public Enum TextAlignment
  11. TopLeft
  12. TopMiddle
  13. TopRight
  14. MiddleLeft
  15. MiddleMiddle
  16. MiddleRight
  17. BottomLeft
  18. BottomMiddle
  19. BottomRight
  20. End Enum
  21. Public Enum FadeEffect
  22. FadeIn
  23. FadeOut
  24. End Enum
  25. <Flags()> _
  26. Public Enum AgnosticFontStyle
  27. Regular = 0
  28. Bold = 1
  29. Italic = 2
  30. Underline = 4
  31. End Enum