请问一下 Spread for ActiveX 表格怎么样把表头里的内容强制换行?
请问一下 Spread for ActiveX 表格怎么样把表头里的内容强制换行? 回复 1楼guyizh的帖子表头单元格目前无法换行,可以通过冻结行模拟表头,并通过以下代码设置折行:
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
要么自动换行,要么语句 Chr$(13)设置:
ss.row = SpreadHeader
ss.col = 4
ss.Text = "标" + Chr$(13) + "题" 学习了~~
页:
[1]