AODL.Document.Forms.ListFormProperty.ListFormProperty C# (CSharp) Method

ListFormProperty() public method

Creates the ListFormProperty
public ListFormProperty ( IDocument document, PropertyValueType PropValueType ) : System
document IDocument Main document
PropValueType PropertyValueType Property value type
return System
			public ListFormProperty(IDocument document, PropertyValueType PropValueType)
			{
				Document = document;
				Node = document.CreateNode("list-property", "form");
				PropertyValueType = PropValueType;

				_propertyValues = new ListFormPropertyElemCollection();
				_propertyValues.Inserted += PropertyValuesCollection_Inserted;
				_propertyValues.Removed += PropertyValuesCollection_Removed;
			}

Same methods

ListFormProperty::ListFormProperty ( IDocument document, XmlNode node ) : System