| 123456789101112131415 |
- //
- // System.Drawing.Imaging.ColorMode.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Imaging
- {
- [Serializable]
- public enum ColorMode {
- Argb32Mode = 0,
- Argb64Mode = 1
- }
- }
|