Table of Contents

TAdaptativeFormats.AddSeparator Method

Overloads

TAdaptativeFormats.AddSeparator(string, Integer)

Adds a char separator at a given position. Separator array will be kept in order when you add a value.

Syntax

Unit: FlexCel.Core

procedure TAdaptativeFormats.AddSeparator(const sep: string; const sp: Integer); overload;

Parameters

<-> Parameter Type Description
const sep string Character that will be used to calculat the width of the string.
const sp Integer Position in the final string. (0 based)

See also

TAdaptativeFormats.AddSeparator(string, Integer, Integer)

Adds a separator at a given position. Separator array will be kept in order when you add a value. This routine considers utf32 characters.

Syntax

Unit: FlexCel.Core

procedure TAdaptativeFormats.AddSeparator(const Format: string; const fp: Integer; const sp: Integer); overload;

Parameters

<-> Parameter Type Description
const Format string String with the characters.
const fp Integer Position in the format string. (0 based)
const sp Integer Position in the final string. (0 based)

See also