/// <summary>
		/// Creates an ODFGrid
		/// </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 ODFGrid(ODFForm ParentForm, ContentCollection contentCollection, string id, string x, string y, string width, string height): base (ParentForm, contentCollection, id, x, y, width, height)
		{
			_columns = new ODFGridColumnCollection();
			RestoreColumnEvents();
		}
		public ODFGrid(ODFForm ParentForm, XmlNode node): base(ParentForm, node)
		{
			_columns = new ODFGridColumnCollection();
			RestoreColumnEvents();
		}
		/// <summary>
		/// Creates an ODFGrid
		/// </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 ODFGrid(ODFForm ParentForm, ContentCollection contentCollection, string id): base (ParentForm, contentCollection, id)
		{
			_columns = new ODFGridColumnCollection();
			RestoreColumnEvents();
		}
Exemple #4
0
 public ODFGrid(ODFForm parentForm, XElement node) : base(parentForm, node)
 {
     Columns = new ODFGridColumnCollection();
     RestoreColumnEvents();
 }
Exemple #5
0
 /// <summary>
 /// Creates an ODFGrid
 /// </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 ODFGrid(ODFForm parentForm, ContentCollection contentCollection, string id, string x, string y,
                string width, string height) : base(parentForm, contentCollection, id, x, y, width, height)
 {
     Columns = new ODFGridColumnCollection();
     RestoreColumnEvents();
 }
Exemple #6
0
 /// <summary>
 /// Creates an ODFGrid
 /// </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 ODFGrid(ODFForm parentForm, ContentCollection contentCollection, string id)
     : base(parentForm, contentCollection, id)
 {
     Columns = new ODFGridColumnCollection();
     RestoreColumnEvents();
 }
Exemple #7
0
 public ODFGrid(ODFForm ParentForm, XmlNode node) : base(ParentForm, node)
 {
     _columns = new ODFGridColumnCollection();
     RestoreColumnEvents();
 }