Table of Contents

TCellAddress.TCellAddress Constructor

Overloads

TCellAddress.TCellAddress

Creates Cell Address pointing to A1.

Syntax

Namespace: FlexCel.Core

public TCellAddress()

See also

TCellAddress.TCellAddress(String)

Creates a Cell Address pointing to (aCellRef).

Syntax

Namespace: FlexCel.Core

public TCellAddress(String aCellRef)

Parameters

<-> Parameter Type Description
aCellRef String String containing the cell address in Excel notation (for example "A5").
Absolute references ($A$5) work too.

See also

TCellAddress.TCellAddress(Int32, Int32)

Creates Cell Address pointing to (aRow, aCol).

Syntax

Namespace: FlexCel.Core

public TCellAddress(Int32 aRow, Int32 aCol)

Parameters

<-> Parameter Type Description
aRow Int32 Row index of the reference (1-based).
aCol Int32 Column index of the reference (1-based).

See also

TCellAddress.TCellAddress(Int32, Int32, Boolean, Boolean)

Creates Cell Address pointing to (aRow, aCol) with the corresponding absolute values.

Syntax

Namespace: FlexCel.Core

public TCellAddress(Int32 aRow, Int32 aCol, Boolean aRowAbsolute, Boolean aColAbsolute)

Parameters

<-> Parameter Type Description
aRow Int32 Row index of the reference (1-based).
aCol Int32 Column index of the reference (1-based).
aRowAbsolute Boolean If true row will be an absolute reference. (As in A$5).
aColAbsolute Boolean If true col will be an absolute reference. (As in $A5).

See also

TCellAddress.TCellAddress(String, Int32, Int32, Boolean, Boolean)

Creates Cell Address pointing to (aRow, aCol) with the corresponding absolute values.

Syntax

Namespace: FlexCel.Core

public TCellAddress(String aSheet, Int32 aRow, Int32 aCol, Boolean aRowAbsolute, Boolean aColAbsolute)

Parameters

<-> Parameter Type Description
aSheet String Sheet name of the reference.
aRow Int32 Row index of the reference (1-based).
aCol Int32 Column index of the reference (1-based).
aRowAbsolute Boolean If true row will be an absolute reference. (As in A$5).
aColAbsolute Boolean If true col will be an absolute reference. (As in $A5).

See also