_GValTyp

( Name : String) : Byte

Vrací typ dynamické globální proměnné, jejíž jméno přichází v parametru Name. Jestliže proměnná Name nebude nalezena, vrací funkce hodnotu 0.

Funkce vrací následující číselné kódy:

cTypeByte 1 Byte
cTypeWord 2 Word
cTypeInteger 3 Integer
cTypeLongint 4 LongInt
cTypeReal 5 Real
cTypeChar 6 Char
cTypeString 7 String 
cTypeStringZ 8 StringZ
cTypeDate 9 Date
cTypeDateTime 10 DateTime

Podívejte se na: Globální proměnné

Příklad:

if(_GValTyp("test") = cTypeString)then
    PrintUp(_GetGVal("test"))
endif
SetGVal("Test", "Testovací řetězec");