Table of Contents

TCellValue.Create Method

Overloads

TCellValue.Create(Double)

Creates a cell value containing a number.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: Double): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a Double

See also

TCellValue.Create(Int64)

Creates a cell value containing a number.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: Int64): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a Int64

See also

TCellValue.Create(TDateTime)

Creates a cell value containing a datetime. Note that cells in Excel don't have datetimes, they will be converted to numbers.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: TDateTime): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a TDateTime

See also

TCellValue.Create(string)

Creates a cell value containing a string.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: string): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a string

See also

TCellValue.Create(TRichString)

Creates a cell value containing a rich string.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: TRichString): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a TRichString

See also

TCellValue.Create(Boolean)

Creates a cell value containing a boolean.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: Boolean): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a Boolean

See also

TCellValue.Create(TFlxFormulaErrorValue)

Creates a cell value containing an error.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: TFlxFormulaErrorValue): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a TFlxFormulaError​Value

See also

TCellValue.Create(TFormula)

Creates a cell value containing a formula.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: TFormula): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a TFormula

See also

TCellValue.Create(Variant)

Creates a cell value containing a variant.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: Variant): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a Variant

See also

TCellValue.Create(TValue)

Creates a cell value containing a TValue.

Syntax

Unit: FlexCel.Core

class function TCellValue.Create(const a: TValue): TCellValue; static; overload;

Parameters

<-> Parameter Type Description
const a TValue

See also