在通过使用电子表格功能合并单元格之后,使单元格顶部对齐。我在Google和CFML Reference Adobe ColdFusion 10上发现的只是
left
(默认),right
,center
,justify
,general
,fill
和{{1 }}。合并单元格之后是否还有其他方法或想法可以使其“顶部对齐”?这是我的代码:
center_selection
答案 0 :(得分:3)
您可以使用verticalalignment
来代替/与alignment
一起对齐顶部。您可以将vertical_top, vertical_bottom, vertical_center, vertical_justifyFor
用于不同的对齐方式。
有关更多信息,请访问here。
SpreadsheetFormatCellRange(theSheet,{verticalalignment="VERTICAL_TOP"}, 3,4,30,10);
答案 1 :(得分:0)
RRK答案应该可以,但是如果您正在寻找其他选择,则由于cfspreadsheet的局限性和挫败感,我已经使用了很长时间的插件。
https://github.com/cfsimplicity/lucee-spreadsheet
我知道它确实适用于Lucee(我更喜欢Adobe版本),但是如果您最终升级(因为ColdFusion 11即将在今年寿终正寝),则应该在Adobe CF2016中使用它。 >