AODL.Document.Forms.Controls.ODFControlRef.ODFControlRef C# (CSharp) Метод

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

public ODFControlRef ( IDocument doc, string draw_control, string x, string y, string width, string height ) : System
doc IDocument
draw_control string
x string
y string
width string
height string
Результат System
		public ODFControlRef(IDocument doc, string draw_control, string x, string y, string width, string height)
		{
			_Document = doc;
			this.Node = this.Document.CreateNode("control", "draw");
			this.DrawControl = draw_control;
			this.X = x;
			this.Y = y;
			this.Width = width;
			this.Height = height;
		}
			

Same methods

ODFControlRef::ODFControlRef ( IDocument doc, XmlNode node ) : System
ODFControlRef::ODFControlRef ( IDocument doc, string draw_control ) : System
ODFControlRef