Skip to content

FillString Function

See Also: String, Integer

Purpose

Creates a String of specified length filled with a specific character.

Return Type

String

Syntax

(FillString({stringCharacter, integerLength}))

What It Does

The FillString function returns a String of Length integerLength filled with character stringCharacter.

Example

String sChar
Integer iLength
Move "t" to sChar
Move 10 to iLength
Move (FillString(sChar, iLength)) to sParam