//
// System.Windows.Forms.CreateParams.cs
//
// Author:
// stubbed out by Jaak Simm (jaaksimm@firm.ee)
// Dennis Hayes (dennish@Raytek.com)
//
// (C) 2002 Ximian, Inc
//
using System.Collections;
using System.ComponentModel;
namespace System.Windows.Forms{
/// <summary>
/// Encapsulates the information needed when creating a control.
/// </summary>
public class CreateParams {
#region Fields
private string caption;
private string className;
private int classStyle;
private int exStyle;
private int height;
private object param;
private IntPtr parent;
private int style;
private int width;
private int x;
private int y;
#endregion
#region Constructors
public CreateParams()
{
}
#endregion
#region Properties
public string Caption {
get { return caption; }
set { caption = value; }
}
public string ClassName {
get { return className; }
set { className = value; }
}
public int ClassStyle {
get { return classStyle; }
set { classStyle = value; }
}
public int ExStyle {
get { return exStyle; }
set { exStyle = value; }
}
public int Height {
get { return height; }
set { height = value; }
}
public object Param {
get { return param; }
set { param = value; }
}
public IntPtr Parent {
get { return parent; }
set { parent = value; }
}
public int Style {
get { return style; }
set { style = value; }
}
public int Width {
get { return width; }
set { width = value; }
}
public int X {
get { return x; }
set { x = value; }
}
public int Y {
get { return y; }
set { y = value; }
}
#endregion
#region Methods
[MonoTODO]
public override string ToString()
{
throw new NotImplementedException ();
}
#endregion
}
}
|