PenAlignment.cs 292 B

123456789101112131415161718192021
  1. //
  2. // System.Drawing.Drawing2D.PenAlignment.cs
  3. //
  4. // Author:
  5. // Miguel de Icaza ([email protected])
  6. //
  7. // (C) Ximian, Inc. http://www.ximian.com
  8. //
  9. using System;
  10. namespace System.Drawing {
  11. public enum PenAlignment {
  12. Center = 0,
  13. Inset = 1,
  14. Outset = 2,
  15. Left = 3,
  16. Right =4
  17. }
  18. }