The QMetaProperty class stores meta data about a property.
.PP
Property meta data includes type(), name(), and whether a property is writable(), designable() and stored().
.PP
The functions isSetType(), isEnumType() and enumKeys() provide further information about a property's type. The conversion functions keyToValue(), valueToKey(), keysToValue() and valueToKeys() allow conversion between the integer representation of an enumeration or set value and its literal representation.
.PP
Actual property values are set and received through QObject's set and get functions. See QObject::setProperty() and QObject::property() for details.
.PP
You receive meta property data through an object's meta object. See QMetaObject::property() and QMetaObject::propertyNames() for details.
Returns TRUE if the property is designable for object \fIo\fR; otherwise returns FALSE.
.PP
If no object \fIo\fR is given, the function returns a static approximation.
.SH "QStrList QMetaProperty::enumKeys () const"
Returns the possible enumeration keys if this property is an enumeration type (or a set type).
.PP
See also isEnumType().
.SH "bool QMetaProperty::isEnumType () const"
Returns TRUE if the property's type is an enumeration value; otherwise returns FALSE.
.PP
See also isSetType() and enumKeys().
.SH "bool QMetaProperty::isSetType () const"
Returns TRUE if the property's type is an enumeration value that is used as set, i.e. if the enumeration values can be OR-ed together; otherwise returns FALSE. A set type is implicitly also an enum type.