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

ODFFormControl() защищенный Метод

protected ODFFormControl ( ODFForm ParentForm, ContentCollection contentCollection, string id ) : System
ParentForm AODL.Document.Forms.ODFForm
contentCollection ContentCollection
id string
Результат System
		protected ODFFormControl(ODFForm ParentForm, ContentCollection contentCollection, string id)
		{
			_document = ParentForm.Document;
			_parentForm = ParentForm;
			Node = ParentForm.Node;
			_contentCollection = contentCollection;
			CreateBasicNode();
			ID = id;
			this.ControlImplementation = "ooo:com.sun.star.form.component.TextField";
			_controlRef = new ODFControlRef(_document, id);

			_properties = new FormPropertyCollection();
			_properties.Inserted += PropertyCollection_Inserted;
			_properties.Removed += PropertyCollection_Removed;
			
		}

Same methods

ODFFormControl::ODFFormControl ( ODFForm ParentForm, ContentCollection contentCollection, string id, string x, string y, string width, string height ) : System
ODFFormControl::ODFFormControl ( ODFForm ParentForm, XmlNode node ) : System