找回密码
 立即注册

QQ登录

只需一步,快速开始

刘君

中级会员

141

主题

335

帖子

942

积分

中级会员

积分
942

活字格认证

[已处理] 最佳高度

刘君
中级会员   /  发表于:2019-2-25 09:37  /   查看:3155  /  回复:1
GetPreferredRowHeight 可获行某一行的最佳行高,有没有获得某一单元格最佳高度的方法?

1 个回复

倒序浏览
dexteryao讲师达人认证 悬赏达人认证 SpreadJS 开发认证
超级版主   /  发表于:2019-2-25 16:45:34
沙发
调用 GetPreferredCellSize
  1. System.Drawing.Size sz;
  2. fpSpread1.ActiveSheet.SetValue(0, 0, "Expand the cell to fit the text.");
  3. sz = fpSpread1.ActiveSheet.GetPreferredCellSize(0,0);
  4. fpSpread1.ActiveSheet.Columns[0].Width = sz.Width;
  5. MessageBox.Show("The width of the cell is " + sz.Width.ToString());
复制代码

评分

参与人数 1满意度 +5 收起 理由
刘君 + 5 很给力!

查看全部评分

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