Funzione GetGuiType

Restituisce un valore numerico che specifica l'interfaccia utente grafica.

Questa funzione viene fornita solo per offrire la compatibilità all'indietro con le versioni precedenti. Il valore di ritorno non è definito negli ambienti client-server.

note

Wiser script instructions are available from Identifying the operating system help page.


tip

• ScriptForge.Platform service provides a collection of properties about the current execution environment and context, that include platform detection.

• Extensive operating system name identification is available from INFO("system") Calc formula.


Sintassi:


         GetGUIType()
      

Valore restituito:

Integer

Valori restituiti:

1: Windows

4: UNIX

Esempio:


         Sub ExampleEnvironment
             MsgBox GetGUIType
         End Sub