**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Windows.Forms / System.Windows.Forms / CreateParams.cs
blobf89c96340241e96cf546989f5b244cfde1f375b7
1 //
2 // System.Windows.Forms.CreateParams.cs
3 //
4 // Author:
5 // stubbed out by Jaak Simm (jaaksimm@firm.ee)
6 // Dennis Hayes (dennish@Raytek.com)
7 //
8 // (C) 2002 Ximian, Inc
9 //
12 // Permission is hereby granted, free of charge, to any person obtaining
13 // a copy of this software and associated documentation files (the
14 // "Software"), to deal in the Software without restriction, including
15 // without limitation the rights to use, copy, modify, merge, publish,
16 // distribute, sublicense, and/or sell copies of the Software, and to
17 // permit persons to whom the Software is furnished to do so, subject to
18 // the following conditions:
19 //
20 // The above copyright notice and this permission notice shall be
21 // included in all copies or substantial portions of the Software.
22 //
23 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
27 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
28 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
29 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
32 using System.Collections;
33 using System.ComponentModel;
35 namespace System.Windows.Forms {
37 /// <summary>
38 /// Encapsulates the information needed when creating a control.
39 /// </summary>
41 public class CreateParams {
43 #region Fields
44 private string caption;
45 private string className;
46 private int classStyle;
47 private int exStyle;
48 private int height;
49 private object param;
50 private IntPtr parent;
51 private int style;
52 private int width;
53 private int x;
54 private int y;
55 #endregion
57 #region Constructors
58 public CreateParams()
61 #endregion
63 #region Properties
64 public string Caption {
65 get { return caption; }
66 set { caption = value; }
69 public string ClassName {
70 get { return className; }
71 set { className = value; }
74 public int ClassStyle {
75 get { return classStyle; }
76 set { classStyle = value; }
79 public int ExStyle {
80 get { return exStyle; }
81 set { exStyle = value; }
84 public int Height {
85 get { return height; }
86 set { height = value; }
89 public object Param {
90 get { return param; }
91 set { param = value; }
94 public IntPtr Parent {
95 get { return parent; }
96 set { parent = value; }
99 public int Style {
100 get { return style; }
101 set { style = value; }
104 public int Width {
105 get { return width; }
106 set { width = value; }
109 public int X {
110 get { return x; }
111 set { x = value; }
114 public int Y {
115 get { return y; }
116 set { y = value; }
118 #endregion
120 #region Methods
121 [MonoTODO]
122 public override string ToString()
124 //FIXME:
125 return base.ToString();
127 #endregion