Funkcja GetGuiType

Zwraca wartość numeryczną określającą graficzny interfejs użytkownika.

Ta funkcja została zaimplementowana wyłącznie w celu zapewnienia zgodności z poprzednimi wersjami. Wartość zwracana nie jest zdefiniowana w środowiskach typu klient-serwer.

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.


Składnia:


         GetGUIType()
      

Zwracana wartość:

Liczba całkowita

Zwracane wartości:

1: Windows

4: UNIX

Przykład:


         Sub ExampleEnvironment
             MsgBox GetGUIType
         End Sub