Beispiel #1
0
        public static void InitSell(this ExcelRow row, int index, bool isBold, string value)
        {
            var easyGetCell = row.easy_getCell(index);

            easyGetCell.setBold(isBold);
            easyGetCell.setDataType("string");
            easyGetCell.setValue(value);
        }