AODL.Document.Content.Draw.DrawAreaRectangle.DrawAreaRectangle C# (CSharp) Метод

DrawAreaRectangle() публичный Метод

Initializes a new instance of the DrawAreaRectangle class.
public DrawAreaRectangle ( IDocument document, string x, string y, string width, string height ) : System
document IDocument The document.
x string The x.
y string The y.
width string The width.
height string The height.
Результат System
		public DrawAreaRectangle(IDocument document,
			string x, string y, string width, string height) : base(document) 
		{
			this.X = x;
			this.Y = y;
			this.Width = width;
			this.Height = height;
		}

Same methods

DrawAreaRectangle::DrawAreaRectangle ( IDocument document, XmlNode node ) : System
DrawAreaRectangle::DrawAreaRectangle ( IDocument document, string x, string y, string width, string height, EventListeners listeners ) : System