Ejemplo n.º 1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MCell"/> class.
 /// </summary>
 /// <param name="value">The value.</param>
 public MCell(MColumn column, object value)
 {
     this.Column = column; this.Value = value;
 }
Ejemplo n.º 2
0
        /// <summary>
        /// add the cell.
        /// </summary>
        public void AddCell(MColumn column, object value)
        {
            var cell = new MCell(column, value);

            this.Cells.Add(cell);
        }