LookupArxCommand

LookupArxCommand(strNomeArx: stringa)

Funzione che controlla se è presente il comando arx e se lo trova lo ritorna. In ingresso vuole una stringa rappresentante il comando arx che si è deciso di cercare. Ritorna il comando arx e un booleano(true se lo trova, false se non lo trova).

Esempio 1. Esempio LookupArxCommand

local cmd, found2 = LookupArxCommand("LINE")
print("\nLookupArxCommand('LINE') found = " .. tostring(found2) .. " cmd tipo = " .. type(cmd))