PySide6.QtCore.QGenericArgument¶
- class QGenericArgument¶
The
QGenericArgumentclass is an internal helper class for marshalling arguments.Details
This class should never be used directly. Please use the
Q_ARG()macro instead.See also
Q_ARG()invokeMethod()QGenericReturnArgumentInherited by:
QGenericReturnArgumentSynopsis¶
Methods¶
def
__init__()def
data()def
name()
Note
This documentation may contain snippets that were automatically translated from C++ to Python. We always welcome contributions to the snippet translation. If you see an issue with the translation, you can also let us know by creating a ticket on https:/bugreports.qt.io/projects/PYSIDE
- __init__([aName=None[, aData=None]])¶
- Parameters:
aName – str
aData –
void
Constructs a
QGenericArgumentobject with the givennameanddata.- data()¶
- Return type:
void
Returns the data set in the constructor.
- name()¶
- Return type:
str
Returns the name set in the constructor.