Programming Gambas from Zip/Constants

Constants edit

String constants edit

http://Gambaswiki.org/wiki/cat/constant

gb.NewLine Newline character. This is Chr(10).
gb.Cr Carriage return character. This is Chr(13). The line terminator on old Macintoshs.
gb.Lf Linefeed character. This is Chr(10). The line terminator on Linux and new Macs.
gb.CrLf Carriage return followed by linefeed. The line terminator on Windows and network protocols such as HTTP.
gb.Tab Tab character. This is Chr(9).

Sort Order edit

gb.Ascent Ascending sort (This is default).
gb.Descent Descending sort.

Alignment edit

Because these are part of the Align class, refer to these as Align.Center, Align.Left etc.

Bottom BottomRight Justify Normal Top TopNormal
BottomLeft Center Left Right TopLeft TopRight
BottomNormal
Programming Gambas from Zip
 ← Functions Constants Operators →