Table of Contents

SetMinimumDelimiter subroutine

Description

Establishes the minimum system delimiter value.

Syntax

SetMinimumDelimiter(value)

Note

This is the programmatic equivalent as checking a Minimum Delimiter Setting in the System Editor.

Parameters

The SetUTF8 subroutine has the following parameter.

ParameterDescription
value0 = no delimiters
240 to 255 = decimal value of minimum system delimiter

See Also

GetMinimumDelimiter()

Example

declare function GetMinimumDelimiter

* set minimum delimiter to @TM (Char(251))

call SetMinimumDelimiter(251)

* delim will contain the decimal number 251 after the function call

delim = GetMinimumDelimiter()