Table of Contents

FlxConsts.RowMult Field

Multiply by this number to convert pixels to excel row height units.

Remarks

1 Height unit= 1/20 pt. 1pt=1/72 inch. At 96ppi, 1 Height Unit= 96/(72*20)pixels -> 1 pix=(72*20)/96 = 15 Height units.

Syntax

Namespace: FlexCel.Core

public const Double RowMult = 15

Examples

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

See also