HotXLS Docs
Contents
Home
Overview
TGridToXLS
IXLSWorkbook
Home
Contents
Overview
RowHeight 属性
返回或设置指定区域中所有行的
高度
,以磅为单位测量
语法
property
RowHeight: OleVariant;
示例
此示例将工作表一上第一行的高度加倍
With
Workbook.Sheets[
1
].Range[
'A1'
,
'A1'
]
do
begin
RowHeight := RowHeight *
2
;
end
;