No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Enums.cs 475B

123456789101112131415161718192021222324252627
  1. namespace PDNWrapper
  2. {
  3. internal enum MeasurementUnit
  4. {
  5. Pixel = 1,
  6. Inch = 2,
  7. Centimeter = 3
  8. }
  9. internal enum LayerBlendMode
  10. {
  11. Normal = 0,
  12. Multiply = 1,
  13. Additive = 2,
  14. ColorBurn = 3,
  15. ColorDodge = 4,
  16. Reflect = 5,
  17. Glow = 6,
  18. Overlay = 7,
  19. Difference = 8,
  20. Negation = 9,
  21. Lighten = 10,
  22. Darken = 11,
  23. Screen = 12,
  24. Xor = 13
  25. }
  26. }