关于farpoint如何设置 单元格换行 及自动调整行高 行宽。
FarPoint.Win.Spread.CellType.TextCellType text = newFarPoint.Win.Spread.CellType.TextCellType();
text.Multiline = true;
text.WordWrap = true;
string str=”内容换行举例1\r\n内容换行举例2\r\n”;
this.fpSpread1_Sheet1.Rows[0].CellType= text;
this.fpSpread1_Sheet1.Cells[0, 0].Text =str
//自动行高
fpSpread1.ActiveSheet.Rows[i].Height=fpSpread1.ActiveSheet.Rows[i].GetPreferredHeight();
//自动行宽
fpSpread1.ActiveSheet.Columns[i].Width= fpSpread1.ActiveSheet.Columns[i].GetPreferredWidth();
注意自动行高、行宽的位置应在farpoint表格已赋值完后,否则可能为无效状态。