Table of Contents

ExcelFile.GetCellVisibleFormatDef Method

Overloads

ExcelFile.GetCellVisibleFormatDef(Int32, Int32)

Cell Format for a given cell, including the format of the row and the column.

Remarks

This might return format even if the cell is empty, if the column or the row have format. For the real format of the cell, see GetCellFormat(Int32, Int32) This is a shortcut for GetCellVisibleFormat, returning the final Format struct.

Syntax

Namespace: FlexCel.Core

public TFlxFormat GetCellVisibleFormatDef(Int32 row, Int32 col)

Parameters

<-> Parameter Type Description
row Int32 Row Index (1 based)
col Int32 Column Index (1 based)

Returns

Format for the cell

See also

ExcelFile.GetCellVisibleFormatDef(Int32, Int32, Int32)

Cell Format for a given cell, including the format of the row and the column.

Remarks

This might return format even if the cell is empty, if the column or the row have format. For the real format of the cell, see GetCellFormat(Int32, Int32) This is a shortcut for GetCellVisibleFormat, returning the final Format struct.

Syntax

Namespace: FlexCel.Core

public TFlxFormat GetCellVisibleFormatDef(Int32 sheet, Int32 row, Int32 col)

Parameters

<-> Parameter Type Description
sheet Int32 Sheet index. (1 based)
row Int32 Row Index (1 based)
col Int32 Column Index (1 based)

Returns

Format for the cell

See also