Exemple #1
0
        /// <summary>
        /// Adds a new column of the specified width to the table. Allowed only before any row was added.
        /// </summary>
        public Column AddColumn(Unit width)
        {
            Column clm = Columns.AddColumn();

            clm.Width = width;
            return(clm);
        }
Exemple #2
0
 /// <summary>
 /// Adds a new column to the table. Allowed only before any row was added.
 /// </summary>
 public Column AddColumn()
 {
     return(Columns.AddColumn());
 }
Exemple #3
0
 ///<summary> Adds a new column to the table. Allowed only before any row was added. </summary>
 public Column AddColumn() => Columns.AddColumn();