本帖最后由 libo 于 2018-8-21 09:33 编辑
设置第二列单元格类型为Text类型,设置文字最大长度2000,可以多行,可以自动折行,
设置celltyo.TextOrientation = FarPoint.Win.TextOrientation.TextRotateCustom
EditModePermanent = True
代码如下:
Dim celltyo As FarPoint.Win.Spread.CellType.TextCellType
celltyo = New CellType.TextCellType
celltyo.MaxLength = 2000
celltyo.Multiline = True
celltyo.WordWrap = True
celltyo.TextOrientation = FarPoint.Win.TextOrientation.TextRotateCustom
FpSpread1.ActiveSheet.Columns(1).CellType = celltyo
FpSpread1.EditModePermanent = True
在第二列的单元格里输入文本,当文本长度大的时候,点击格子画面变得非常的卡,
这个怎么解决?
如下图
00001.png
00002.png
|
|