* TextControl.cs: Oops, we need to use the ClientRect not the
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / DataGridViewImageCellLayout.cs
index 933e831bad0ce7e5bd1cf5938c36f554ac15d62b..b8d6bbdd47adf3f9d63cd5a6eebc53a28b3b0a2c 100644 (file)
 namespace System.Windows.Forms {
 
        public enum DataGridViewImageCellLayout {
-               Normal,
-               NotSet,
-               Stretch,
-               Zoom
+               NotSet = 0,
+               Normal = 1,
+               Stretch = 2,
+               Zoom = 3
        }
 
 }