2
0

HatchStyle.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. //
  2. // System.Drawing.Drawing2D.HatchStyle.cs
  3. //
  4. // Authors:
  5. // Stefan Maierhofer <[email protected]>
  6. // Dennis Hayes ([email protected])
  7. // Ravindra ([email protected])
  8. //
  9. // (C) 2002/3 Ximian, Inc.
  10. // Copyright (C) 2004,2006 Novell, Inc (http://www.novell.com)
  11. //
  12. // Permission is hereby granted, free of charge, to any person obtaining
  13. // a copy of this software and associated documentation files (the
  14. // "Software"), to deal in the Software without restriction, including
  15. // without limitation the rights to use, copy, modify, merge, publish,
  16. // distribute, sublicense, and/or sell copies of the Software, and to
  17. // permit persons to whom the Software is furnished to do so, subject to
  18. // the following conditions:
  19. //
  20. // The above copyright notice and this permission notice shall be
  21. // included in all copies or substantial portions of the Software.
  22. //
  23. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  24. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  25. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  26. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  27. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  28. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  29. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  30. //
  31. namespace System.Drawing.Drawing2D {
  32. #if ONLY_1_1
  33. [Serializable]
  34. #endif
  35. public enum HatchStyle {
  36. BackwardDiagonal = 3,
  37. Cross = LargeGrid,
  38. DarkDownwardDiagonal = 20,
  39. DarkHorizontal = 29,
  40. DarkUpwardDiagonal = 21,
  41. DarkVertical = 28,
  42. DashedDownwardDiagonal = 30,
  43. DashedHorizontal = 32,
  44. DashedUpwardDiagonal = 31,
  45. DashedVertical = 33,
  46. DiagonalBrick = 38,
  47. DiagonalCross = 5,
  48. Divot = 42,
  49. DottedDiamond = 44,
  50. DottedGrid = 43,
  51. ForwardDiagonal = 2,
  52. Horizontal = 0,
  53. HorizontalBrick = 39,
  54. LargeCheckerBoard = 50,
  55. LargeConfetti = 35,
  56. LargeGrid = 4,
  57. LightDownwardDiagonal = 18,
  58. LightHorizontal = 25,
  59. LightUpwardDiagonal = 19,
  60. LightVertical = 24,
  61. Max = 4,
  62. Min = 0,
  63. NarrowHorizontal = 27,
  64. NarrowVertical = 26,
  65. OutlinedDiamond = 51,
  66. Percent05 = 6,
  67. Percent10 = 7,
  68. Percent20 = 8,
  69. Percent25 = 9,
  70. Percent30 = 10,
  71. Percent40 = 11,
  72. Percent50 = 12,
  73. Percent60 = 13,
  74. Percent70 = 14,
  75. Percent75 = 15,
  76. Percent80 = 16,
  77. Percent90 = 17,
  78. Plaid = 41,
  79. Shingle = 45,
  80. SmallCheckerBoard = 49,
  81. SmallConfetti = 34,
  82. SmallGrid = 48,
  83. SolidDiamond = 52,
  84. Sphere = 47,
  85. Trellis = 46,
  86. Vertical = 1,
  87. Wave = 37,
  88. Weave = 40,
  89. WideDownwardDiagonal = 22,
  90. WideUpwardDiagonal = 23,
  91. ZigZag = 36
  92. }
  93. }