您好,默认行高列宽都是固定的。
如果您有设置单元格celltype 的 AllowWrap 为true。那么行高会自动根据换行自适应。
FpSpread1.ActiveSheetView.Cells[0, 1].Text = "fsdfsdfsdf\n\tdsfdsfdsfdsfsdfdsfdfdsfsdfsdfsdf";
var textCellType = new FarPoint.Web.Spread.TextCellType();
textCellType.AllowWrap = false;
FpSpread1.ActiveSheetView.Cells[0, 1].CellType = textCellType; |