作者:componentcn 出处:componentcn 2010年10月28日 阅读:
问:当列中内容超过列宽时,可否让它自动换行?
答:您好:
你可以将Cell的CellType设置为TextBox,同时将TextBoxCellType的Wordwrap属性置为true即可。代码如下: TextCellType cellType = new TextCellType(); cellType.WordWrap = true; this.fpSpread1.ActiveSheet.Cells[1, 1].CellType = cellType; 复制代码