回复 1楼xiaoding的帖子
感谢你对该问题的反馈。
很抱歉回复晚了。
Sheet下有GetPreferredColumnWidth方法,可以获取基于列的文字内容的实际宽度,
然后将这个得到的宽度设置给该列即可。
代码参考:
- FarPoint.Win.Spread.Row row;
- FarPoint.Win.Spread.Column col;
- float sizerow;
- float sizercol;
- row = fpSpread1.ActiveSheet.Rows[0];
- col = fpSpread1.ActiveSheet.Columns[0];
- fpSpread1.ActiveSheet.Cells[0, 0].Text = "This text is used to determine the height and width.";
- sizerow = row.GetPreferredHeight();
- sizecol = col.GetPreferredWidth();
- row.Height = sizerow;
- col.Width = sizecol;
复制代码 |