BitmapProgramAlignMode.cs 458 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 BitmapProgramAlignMode
  9. {
  10. LeftTop = 0x00,
  11. LeftCenter = 0x10,
  12. LeftBottom = 0x20,
  13. CenterTop = 0x40,
  14. CenterCenter = 0x50,
  15. CenterBottom = 0x60,
  16. BottomTop = 0x80 ,
  17. BottomCenter = 0x90 ,
  18. BottomBottom = 0xA0 ,
  19. }
  20. }