jstzwhc 发表于 2023-6-26 23:00:06

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个字符。
      请问有解决办法吗?


Richard.Ma 发表于 2023-6-26 23:00:07

这个是textcelltype 的限制,你要是只是想换行

可以用new GeneralCellType() {WordWrap=true};

jstzwhc 发表于 2023-6-27 14:59:58

解决了,主要是数据绑定后,TextCellType MaxLength恢复默认值为255,要重新设置一下。

Richard.Ma 发表于 2023-6-27 15:30:54

好的
页: [1]
查看完整版本: spread.net winform 12 如何突破其自身长度233字符的限制