Předdefinované Konstanty
Datatypes
These constants are returned by
TypeOf.
File types
These constants are used by the
Stat() function.
String constants
Sort and comparison
Comparison methods
These constants are used by the
Comp function and each time a sort Metody is needed.
For example, in the
Array sort methods, when creating a
Collection,
in the
String Třída methods, and so on.
gb.Binary
|
Binary comparison (This is the default).
|
gb.IgnoreCase
|
Case unsensitive comparison.
|
gb.Language
|
Comparison according to the current language.
|
gb.Language + gb.IgnoreCase
|
Case unsensitive comparison according to the current language.
|
gb.Natural
|
Natural comparison according to the current language.
|
gb.Natural + gb.IgnoreCase
|
Case unsensitive Natural comparison according to the current language.
|
gb.Like
|
The second string is assumed to be a LIKE pattern. If the first string matches it, then 0 is returned.
Otherwise a case unsensitive comparison is done.
|
Sort order
These constants define the order used by sort methods.
Week days
These constant are the values returned by the
WeekDay() function.
Predefined formats
Numeric formats
gb.GeneralNumber
|
Write a number with twelve decimal digits.
Use scientific format if its absolute value is lower than 10-4 or greater than 107.
|
gb.Fixed
|
Equivalent to "0.00"
|
gb.Percent
|
Equivalent to "###%"
|
gb.Scientific
|
Write a number with its exponent and eighteen decimal digits.
|
Date and time formats
Currency formats
gb.Currency
|
Format a currency by using the national currency symbol.
|
gb.International
|
Format a currency by using the international currency symbol.
|
Miscellaneous formats
Endianness
gb.BigEndian
|
Big endianness. The values are stored in memory the higher bytes first.
|
gb.LittleEndian
|
Little endianness. The values are stored in memory the lower bytes first.
|