找回密码
 立即注册

QQ登录

只需一步,快速开始

wanfw

注册会员

4

主题

9

帖子

31

积分

注册会员

积分
31

活字格认证

wanfw
注册会员   /  发表于:2011-11-11 17:28  /   查看:5846  /  回复:1
在向单元格中录入数据时,录入的内容是分条的,比如
1、内容***
2、内容***
3、内容***
等,怎么设置?因为如果自动折行,并不一定折行的位置恰好正确。

1 个回复

倒序浏览
iceman
社区贡献组   /  发表于:2011-11-11 17:58:00
沙发
你好,请参考以下代码:

  1.             FarPoint.Win.Spread.CellType.TextCellType text = new FarPoint.Win.Spread.CellType.TextCellType();           
  2.             text.Multiline = true;

  3.             this.fpSpread1.ActiveSheet.Columns[0].Width = 100;
  4.             this.fpSpread1.ActiveSheet.Rows[0].Height = 100;
  5.             this.fpSpread1.ActiveSheet.Cells[0, 0].CellType = text;
  6.             this.fpSpread1.ActiveSheet.Cells[0, 0].Text = "1.内容***\n2.内容******\n3.内容***\n";
复制代码
效果图:

png

png
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 立即注册
返回顶部