\inmodule QtCore
The QPropertyAlias class is a safe alias for a QProperty with same template parameter.
QPropertyAlias<T> wraps a pointer to a QProperty<T> and automatically invalidates itself when the QProperty<T> is destroyed. It forwards all method invocations to the wrapped property. For example:
ageAlias.setValue(age.value() + 1);
nameAlias.setValue("Eve");
ageAlias.setValue(92);
parameter_type value() const
Returns the value of the property.
QPropertyBinding< T > setBinding(const QPropertyBinding< T > &newBinding)
Associates the value of this property with the provided newBinding expression and returns the previou...
static QString number(int, int base=10)
This is an overloaded member function, provided for convenience. It differs from the above function o...