111,096
社区成员




int kRow=10;
ICellStyle cellStyle = sheet.GetRow(kRow).GetCell(kCol).CellStyle;
short rowHight = sheet.GetRow(kRow).Height;
int kLastRowIndex = sheet.LastRowNum;
for (int i = kRow; i < kRow+ table.data.Rows.Count - 1; i++)
{
IRow row = sheet.CreateRow(i+1);
NPOI.SS.UserModel.ICell cell = row.CreateCell(0);
cell.CellStyle = cellStyle;
cell.SetCellValue("ttt");
}