ShapeDrawType.cs 172 B

123456789101112
  1. using System;
  2. namespace PaintDotNet.Measurement.Enum
  3. {
  4. [Flags]
  5. public enum ShapeDrawType
  6. {
  7. Interior = 1,
  8. Outline = 2,
  9. Both = 3
  10. }
  11. }