Example #1
0
 /// <summary>
 /// Creates an ODFListBox
 /// </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 ODFListBox(ODFForm parentForm, ContentCollection contentCollection, string id, string x, string y,
                   string width, string height) : base(parentForm, contentCollection, id, x, y, width, height)
 {
     _options = new ODFOptionCollection();
     RestoreOptionEvents();
 }
Example #2
0
 public ODFListBox(ODFForm parentForm, XElement node) : base(parentForm, node)
 {
     _options = new ODFOptionCollection();
     RestoreOptionEvents();
 }
Example #3
0
 /// <summary>
 /// Creates an ODFListBox
 /// </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 ODFListBox(ODFForm parentForm, ContentCollection contentCollection, string id)
     : base(parentForm, contentCollection, id)
 {
     _options = new ODFOptionCollection();
     RestoreOptionEvents();
 }
		public ODFListBox(ODFForm ParentForm, XmlNode node): base(ParentForm, node)
		{
			_options = new ODFOptionCollection();
			RestoreOptionEvents();
		}
		/// <summary>
		/// Creates an ODFListBox
		/// </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 ODFListBox(ODFForm ParentForm, ContentCollection contentCollection, string id, string x, string y, string width, string height): base (ParentForm, contentCollection, id, x, y, width, height)
		{
			_options = new ODFOptionCollection();
			RestoreOptionEvents();
		}
		/// <summary>
		/// Creates an ODFListBox
		/// </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 ODFListBox(ODFForm ParentForm, ContentCollection contentCollection, string id): base (ParentForm, contentCollection, id)
		{
			_options = new ODFOptionCollection();
			RestoreOptionEvents();
		}
Example #7
0
 public ODFListBox(ODFForm ParentForm, XmlNode node) : base(ParentForm, node)
 {
     _options = new ODFOptionCollection();
     RestoreOptionEvents();
 }