Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/System.Drawing/System.Drawing.Imaging/ImageFlags.cs')
-rw-r--r--mcs/class/System.Drawing/System.Drawing.Imaging/ImageFlags.cs26
1 files changed, 0 insertions, 26 deletions
diff --git a/mcs/class/System.Drawing/System.Drawing.Imaging/ImageFlags.cs b/mcs/class/System.Drawing/System.Drawing.Imaging/ImageFlags.cs
deleted file mode 100644
index 61e0ec878a1..00000000000
--- a/mcs/class/System.Drawing/System.Drawing.Imaging/ImageFlags.cs
+++ /dev/null
@@ -1,26 +0,0 @@
-//
-// System.Drawing.Imaging.ImageFlags.cs
-//
-// (C) 2002 Ximian, Inc. http://www.ximian.com
-// Author: Dennis Hayes (dennish@raytek.com)
-//
-using System;
-namespace System.Drawing.Imaging
-{
- public enum ImageFlags {
- Caching = 131072,
- ColorSpaceCmyk = 32,
- ColorSpaceGray = 64,
- ColorSpaceRgb = 16,
- ColorSpaceYcbcr = 128,
- ColorSpaceYcck = 256,
- HasAlpha = 2,
- HasRealDpi = 4096,
- HasRealPixelSize = 8192,
- HasTranslucent = 4,
- None = 0,
- PartiallyScalable = 8,
- ReadOnly = 65536,
- Scalable = 1
- }
-}