FlushIntention.cs 402 B

123456789101112131415161718192021
  1. //
  2. // System.Drawing.Drawing2D.FlushIntention.cs
  3. //
  4. // Author:
  5. // Stefan Maierhofer <[email protected]>
  6. // Dennis Hayes ([email protected])
  7. //
  8. // (C) 2002/3 Ximian, Inc
  9. //
  10. using System;
  11. namespace System.Drawing.Drawing2D {
  12. /// <summary>
  13. /// Summary description for FlushIntention.
  14. /// </summary>
  15. [Serializable]
  16. public enum FlushIntention {
  17. Flush = 0,
  18. Sync = 1
  19. }
  20. }