你是说两张图背景色不同么?
如果是这样的话,你可以给editor设置背景色
With _inputArea
......
.BackColor = Drawing.Color.White
End With
其实Spread提供的TextCellType也可以设置为多行:
Dim textCellType As New FarPoint.Web.Spread.TextCellType
textCellType.ShowEditor = True
textCellType.CssClass = "spread_textarea_style"
textCellType.Multiline = True
如果用我们提供的TextCellType,按如上设置,会出现同样的效果。不同的状态会产生不同的效果。这与产品设计有关。 |