Example #1
0
        }         // MssCell_WriteColumnRange

        /// <summary>
        /// Write a dataset to a range of column cells
        /// Accepts format for the target cells
        /// </summary>
        /// <param name="ssWorksheet">Worksheet to write to</param>
        /// <param name="ssRow">rownumber</param>
        /// <param name="ssColumnStart">Start column (integer)</param>
        /// <param name="ssValueList">Values to write to columns</param>
        /// <param name="ssCellType">Type can by text (default), datetime, integer, decimal, boolean</param>
        /// <param name="ssCellFormat">CellFormat for the target cells</param>
        public void MssCell_WriteColumnRangeWithFormat(object ssWorksheet, int ssRow, int ssColumnStart, RLValueRecordList ssValueList, string ssCellType, RCCellFormatRecord ssCellFormat)
        {
            // TODO: Write implementation for action
        }         // MssCell_WriteColumnRangeWithFormat
		public static RLValueRecordList ToList<T>(T[] array, Func <T, RCValueRecord> converter) {
			RLValueRecordList result = new RLValueRecordList();
			result.InnerFromArray(array, converter);
			return result;
		}
		public static RLValueRecordList FromRestList<T>(RestList<T> restList, Func <T, RCValueRecord> converter) {
			RLValueRecordList result = new RLValueRecordList();
			result.InnerFromRestList(restList, converter);
			return result;
		}
		public static T[] ToArray<T>(RLValueRecordList recordlist, Func<RCValueRecord, T> converter) {
			return InnerToArray(recordlist, converter);
		}