Products
|
Download
|
Order
|
Forum
|
Contact us
NativeExcel suite v1.x
Reference
>
IXLSRange
>
RowHeight
RowHeight property
Returns or sets the
height
of all the rows in the range specified, measured in points.
Syntax
property
RowHeight: OleVariant;
Example
This example doubles the height of first row on sheet one.
With
Workbook.Sheets[
1
].Range[
'A1'
,
'A1'
]
do
begin
RowHeight := RowHeight *
2
;
end
;
Copyright © NikaSoft 2004-2012