Table of Contents

ExcelFile.SetRowHeight Method

Sets the current Row height, in Excel internal units. (1/20th of a point) See Excel Internal Units for more information in Excel internal units.

Remarks

Use FlxConsts.RowMult to convert the internal units to pixels.

Syntax

Namespace: FlexCel.Core

public abstract void SetRowHeight(Int32 row, Int32 height)

Parameters

<-> Parameter Type Description
row Int32 Row Index (1 based)
height Int32 Row height, in Excel internal units. (1/20th of a point). See FlxConsts.RowMult

Examples

    double RowHeightInPixels = xls.GetRowHeight(Row) / FlxConsts.RowMult;

See also