ScriptForge.Platform service

The Platform service provides a collection of properties about the current execution environment and context, such as:

note

All properties of the Platform service are read-only.


Service invocation

The code snippet below instantiates the Platform service and accesses the Architecture property.


        GlobalScope.BasicLibraries.LoadLibrary("ScriptForge")
        Dim platform As Variant
        platform = CreateScriptService("Platform")
        MsgBox platform.Architecture
    
note

This service is fully supported in both Basic and Python languages. All examples are expressed using the Basic programming language and can be easily converted to Python.


Proprietà

Nome

Sola lettura

Tipo

Descrizione

Architecture

Sì

String

The hardware bit architecture. Example: '32bit' or '64bit'

ComputerName

Sì

String

The computer's network name.

CPUCount

Sì

Integer

The number of central processing units.

CurrentUser

Sì

String

The name of the currently logged user.

Machine

Sì

String

The machine type. Examples are: 'i386' or 'x86_64'.

OfficeVersion

Sì

String

The actual LibreOffice version expressed as
' LibreOffice w.x.y.z (The Document Foundation)'.

Example: 'LibreOffice 7.1.1.2 (The Document Foundation, Debian and Ubuntu)'

OSName

Sì

String

The operating system type. Example: 'Darwin, Linux' or 'Windows'.

OSPlatform

Sì

String

A single string identifying the underlying platform with as much useful and human-readable information as possible.

Example: 'Linux-5.8.0-44-generic-x86_64-with-glibc2.32'

OSRelease

Sì

String

The operating system's release. Example: '5.8.0-44-generic'

OSVersion

Sì

String

The operating system's build or version.

Example: '#50-Ubuntu SMP Tue Feb 9 06:29:41 UTC 2021'

Processor

Sì

String

The real processor name. Example: 'amdk6'.

This property may return the same value as the Machine property.


warning

All ScriptForge Basic routines or identifiers that are prefixed with an underscore character "_" are reserved for internal use. They are not meant be used in Basic macros.