SystemInformation QML Type

Provides information about the system. More...

Import Statement: import QtCore 6.4
Since: Qt 6.4
Inherits:

QtObject

Detailed Description

The SystemInformation singleton type provides information about the system, using a similar API to QSysInfo, where each function in QSysInfo is available as a property:

if (SystemInformation.wordSize === 64) {
    console.log("64 bit")
} else {
    console.log("32 bit")
}

if (SystemInformation.byteOrder === SystemInformation.Little) {
    console.log("Little endian")
} else {
    console.log("Big endian")
}

console.log("Currently running on " + SystemInformation.prettyProductName)

See also QSysInfo.

© 2023 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.