Xbasic
ALIGN_LEFT Function
Syntax
Output_String as C = align_left(C text )
Arguments
- Output_String
A list containing entries with leading space characters.
- text
A new list with leading space characters removed.
Description
Align text with left border
Discussion
The ALIGN_LEFT() function trims space characters from the left side of entries in a list.
Example
dim x as C dim y as C x = " word" + crlf() + "another word" ? align_left(x) = word another word
See Also