| 123456789101112131415161718192021 |
- //
- // System.Drawing.Drawing2D.FlushIntention.cs
- //
- // Author:
- // Stefan Maierhofer <[email protected]>
- // Dennis Hayes ([email protected])
- //
- // (C) 2002/3 Ximian, Inc
- //
- using System;
- namespace System.Drawing.Drawing2D {
- /// <summary>
- /// Summary description for FlushIntention.
- /// </summary>
- [Serializable]
- public enum FlushIntention {
- Flush = 0,
- Sync = 1
- }
- }
|