Creates a string filled with a series of characters.
StrFill (filler, length)
(s) filler a string to be repeated to create the return string. If the filler string is null, spaces will be used instead.
(i) length the length of the desired string.
(s) character string.
Use this function to create a string consisting of multiple copies of the filler string concatenated together.
Message("My Stars", StrFill("*", 30))
which produces: