checkin for Dennis Hayes, see changeLog for details
[mono.git] / mcs / class / System.Drawing / System.Drawing / RotateFlipType.cs
1 //
2 // System.Drawing.RotateFlipType .cs
3 //
4 // (C) 2001 Ximian, Inc.  http://www.ximian.com
5 // Author: Dennis Hayes (dennish@raytek.com)
6 //
7
8 using System;
9 namespace System.Drawing 
10 {
11         public enum RotateFlipType {
12                 RotateNoneFlipNone = 0,
13                 Rotate180FlipXY    = 0,
14                 Rotate90FlipNone   = 1,
15                 Rotate270FlipXY    = 1,
16                 Rotate180FlipNone  = 2,
17                 RotateNoneFlipXY   = 2,
18                 Rotate270FlipNone  = 3,
19                 Rotate90FlipXY     = 3,
20                 RotateNoneFlipX    = 4,
21                 Rotate180FlipY     = 4,
22                 Rotate90FlipX      = 5,
23                 Rotate270FlipY     = 5,
24                 Rotate180FlipX     = 6,
25                 RotateNoneFlipY    = 6,
26                 Rotate270FlipX     = 7,
27                 Rotate90FlipY      = 7,
28         }
29 }