| 123456789101112131415 |
- //
- // System.Drawing.Imaging.PaletteFlags.cs
- //
- // (C) 2002 Ximian, Inc. http://www.ximian.com
- // Author: Dennis Hayes ([email protected])
- //
- using System;
- namespace System.Drawing.Imaging
- {
- public enum PaletteFlags {
- GrayScale = 2,
- Halftone = 4,
- HasAlpha = 1
- }
- }
|