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

SingleFormProperty() public method

Creates the SingleFormProperty
public SingleFormProperty ( IDocument document, PropertyValueType PropValueType, string PropName, string PropValue ) : System
document IDocument Document containing the form
PropValueType PropertyValueType Type of the property value
PropName string Property name
PropValue string Property value
return System
		public SingleFormProperty(IDocument document, PropertyValueType PropValueType, string PropName, string PropValue)
		{
			Document = document;
			Node = document.CreateNode("property", "form");
			PropertyValueType = PropValueType;
			Name = PropName;
			Value = PropValue;
		}

Same methods

SingleFormProperty::SingleFormProperty ( IDocument document, PropertyValueType PropValueType ) : System
SingleFormProperty::SingleFormProperty ( IDocument document, XmlNode node ) : System
SingleFormProperty