Table of Contents

IRowColSize.GetColWidth Method

Returns the current Column width, in Excel internal units. (Character width of font 0 / 256) See Excel Internal Units for more information in Excel internal units.

Remarks

Use ExcelMetrics.ColMult to convert the internal units to pixels.

Syntax

Namespace: FlexCel.Core

public abstract Int32 GetColWidth(Int32 col, Boolean HiddenIsZero)

Parameters

<-> Parameter Type Description
col Int32 Column Index (1 based)
HiddenIsZero Boolean If true, the width returned for a hidden column will be 0 and not its real width.

Returns

Column width in internal excel units.(Character width of font 0 / 256)

Examples

    double ColWidthInPixels = xls.GetColWidth(Col) / ExcelMetrics.ColMult(xls);

See also