TextProgramAlignMode.cs 465 B

1234567891011121314151617181920212223
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.Threading;
  6. namespace HNWD.LatticeScreen.Server
  7. {
  8. internal enum TextProgramAlignMode
  9. {
  10. LeftTop = 0xE02,
  11. LeftCenter = 0xE12,
  12. LeftBottom = 0xE22,
  13. CenterTop = 0xE42,
  14. CenterCenter = 0xE52,
  15. CenterBottom = 0xE62,
  16. BottomTop = 0xE82 ,
  17. BottomCenter = 0xE92 ,
  18. BottomBottom = 0xEA2 ,
  19. }
  20. }