Table of Contents

TUserDefinedFunction.Create Constructor

Overloads

TUserDefinedFunction.Create(string)

Initializes the name of the user defined function.

Syntax

Unit: FlexCel.Core

constructor TUserDefinedFunction.Create(const aName: string);

Parameters

<-> Parameter Type Description
const aName string Name to be used in the user defined function. This is the same name that should be in the xls file.

See also

TUserDefinedFunction.Create(string, string)

Initializes the name of the user defined function, with a special name for older Excel versions.

Syntax

Unit: FlexCel.Core

constructor TUserDefinedFunction.Create(const aName: string; const aInternalName: string);

Parameters

<-> Parameter Type Description
const aName string Name to be used in the user defined function. This is the same name that should be in the xls file.
const aInternalName string Name that will be used when saving xls (biff8) files. Some functions are saved by Excel 2010 as .xlfn_Name when saving xls (not xlsx). This is the name that should be saved in the xls file, not the real name of the function.

See also