您好,使用 TypeTextWordWrap 设置可以换行。
- ss.Col = 1
- ss.Row = 1
- ss.CellType = CellTypeStaticText
- ss.TypeTextWordWrap = True
- ss.Col = 1
- ss.Row = 1
- ss.Text = “This is a long line of text to see if it wraps.”;
- ss.RowHeight(1) = 50
复制代码
使用 MaxTextRowHeight 可以获取到单元格合适的行高。
|
|