单元格中,文字长度超过单元格宽度时,文字自动折行如何实现?我用的VB6.0 spread7
请高手指教,谢谢
用下面的方法也没实现:
.TypeEditMultiLine = True
或
Spread for Windows Forms 5 中你可以使用TextCellType或者RichTextBoxCellType来设置自动换行,例如: RichTextCellType rtCell = new RichTextCellType();
rtCell.WordWrap = true;
this.fpSpread1.ActiveSheet.Cells[0, 0].CellType = rtCell;
复制代码 |
|