Example #1
0
        //>> Factory methods
        /// <summary>
        /// Adds an item to the collection
        /// </summary>
        public virtual SpreadsheetSheetRowCellBuilder Add()
        {
            var item = new SpreadsheetSheetRowCell();

            container.Add(item);

            return new SpreadsheetSheetRowCellBuilder(item);
        }
Example #2
0
 public SpreadsheetSheetRowCellBuilder(SpreadsheetSheetRowCell settings)
 {
     container = settings;
 }