| 12345678910111213141516 |
- //
- // System.Drawing.Imaging.ColorMatrixFlag.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Imaging
- {
- [Serializable]
- public enum ColorMatrixFlag{
- AltGrays = 2,
- Default = 0,
- SkipGrays = 1
- }
- }
|