spread.net winform 12 如何突破其自身长度233字符的限制
我将CellType设置为TextCellType,具体代码如下Dim TextCellType1 As FarPoint.Win.Spread.CellType.TextCellType = New FarPoint.Win.Spread.CellType.TextCellType
TextCellType1.MaxLength = 8000
Me.spread_Sheet1.Columns.Get(107).CellType = TextCellType1
Cell会自动截取前面233个字符。
请问有解决办法吗?
这个是textcelltype 的限制,你要是只是想换行
可以用new GeneralCellType() {WordWrap=true}; 解决了,主要是数据绑定后,TextCellType MaxLength恢复默认值为255,要重新设置一下。 好的
页:
[1]