QMetaClassInfo¶

The QMetaClassInfo class provides additional information about a class. More…

Inheritance diagram of PySide2.QtCore.QMetaClassInfo

Synopsis¶

Functions¶

Detailed Description¶

Class information items are simple name –value pairs that are specified using Q_CLASSINFO() in the source code. The information can be retrieved using name() and value() . For example:

class MyClass:
    Q_CLASSINFO("author", "Sabrina Schweinsteiger")
    Q_CLASSINFO("url", "http://doc.moosesoft.co.uk/1.0/")

This mechanism is free for you to use in your Qt applications. Qt doesn’t use it for any of its classes.

See also

QMetaObject

class PySide2.QtCore.QMetaClassInfo¶

PySide2.QtCore.QMetaClassInfo(QMetaClassInfo)

Parameters:

QMetaClassInfo – PySide2.QtCore.QMetaClassInfo

PySide2.QtCore.QMetaClassInfo.name()¶
Return type:

str

Returns the name of this item.

See also

value()

PySide2.QtCore.QMetaClassInfo.value()¶
Return type:

str

Returns the value of this item.

See also

name()