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, EventListeners listeners ) : System
document IDocument The document.
x string The x.
y string The y.
width string The width.
height string The height.
listeners AODL.Document.Content.OfficeEvents.EventListeners The listeners.
Результат System
		public DrawAreaRectangle(IDocument document,
			string x, string y, string width, string height,
			EventListeners listeners)
			: base(document)
		{
			this.X = x;
			this.Y = y;
			this.Width = width;
			this.Height = height;

			if (listeners != null)
			{
				this.Content.Add(listeners);
			}
		}

Same methods

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