2007-09-28 Carlos Alberto Cortez <calberto.cortez@gmail.com>
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / FixedSizeTextBox.cs
index 99da53c54da7de20e6ba090c2093c17a823c1a8b..c37930f735be61ed40ff2875c752c1cba50c1a38 100644 (file)
@@ -37,6 +37,11 @@ namespace System.Windows.Forms {
                        SetStyle (ControlStyles.FixedWidth, true);
                        SetStyle (ControlStyles.FixedHeight, true);
                }
+
+               public FixedSizeTextBox (bool fixed_horz, bool fixed_vert) {
+                       SetStyle (ControlStyles.FixedWidth, fixed_horz);
+                       SetStyle (ControlStyles.FixedHeight, fixed_vert);
+               }
        }
 }