Example #1
0
 /// <summary>
 /// Creates an ODFComboBox
 /// </summary>
 /// <param name="ParentForm">Parent form that the control belongs to</param>
 /// <param name="contentCollection">Collection of content where the control will be referenced</param>
 /// <param name="id">Control ID. Please specify a unique ID!</param>
 /// <param name="x">X coordinate of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
 /// <param name="y">Y coordinate of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
 /// <param name="width">Width of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
 /// <param name="height">Height of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
 public ODFComboBox(ODFForm ParentForm, ContentCollection contentCollection, string id, string x, string y, string width, string height) : base(ParentForm, contentCollection, id, x, y, width, height)
 {
     _items = new ODFItemCollection();
     RestoreItemEvents();
 }
Example #2
0
 public ODFComboBox(ODFForm ParentForm, XmlNode node) : base(ParentForm, node)
 {
     _items = new ODFItemCollection();
     RestoreItemEvents();
 }
Example #3
0
 /// <summary>
 /// Creates an ODFComboBox
 /// </summary>
 /// <param name="ParentForm">Parent form that the control belongs to</param>
 /// <param name="contentCollection">Collection of content where the control will be referenced</param>
 /// <param name="id">Control ID. Please specify a unique ID!</param>
 public ODFComboBox(ODFForm ParentForm, ContentCollection contentCollection, string id) : base(ParentForm, contentCollection, id)
 {
     _items = new ODFItemCollection();
     RestoreItemEvents();
 }
Example #4
0
 public ODFComboBox(ODFForm parentForm, XElement node) : base(parentForm, node)
 {
     _items = new ODFItemCollection();
     RestoreItemEvents();
 }
Example #5
0
		public ODFComboBox(ODFForm ParentForm, XmlNode node): base(ParentForm, node)
		{
			_items = new ODFItemCollection();
			RestoreItemEvents();
		}
Example #6
0
		/// <summary>
		/// Creates an ODFComboBox
		/// </summary>
		/// <param name="ParentForm">Parent form that the control belongs to</param>
		/// <param name="contentCollection">Collection of content where the control will be referenced</param>
		/// <param name="id">Control ID. Please specify a unique ID!</param>
		/// <param name="x">X coordinate of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
		/// <param name="y">Y coordinate of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
		/// <param name="width">Width of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
		/// <param name="height">Height of the control in ODF format (eg. "1cm", "15mm", 3.2cm" etc)</param>
		public ODFComboBox(ODFForm ParentForm, ContentCollection contentCollection, string id, string x, string y, string width, string height): base (ParentForm, contentCollection, id, x, y, width, height)
		{
			_items = new ODFItemCollection();
			RestoreItemEvents();
		}
Example #7
0
		/// <summary>
		/// Creates an ODFComboBox
		/// </summary>
		/// <param name="ParentForm">Parent form that the control belongs to</param>
		/// <param name="contentCollection">Collection of content where the control will be referenced</param>
		/// <param name="id">Control ID. Please specify a unique ID!</param>
		public ODFComboBox(ODFForm ParentForm, ContentCollection contentCollection, string id): base (ParentForm, contentCollection, id)
		{
			_items = new ODFItemCollection();
			RestoreItemEvents();
		}