C
KeyframeGroup QML Type
A keyframe group. More...
| Import Statement: | import QtQuick.Timeline |
| Since: | Qt Quick Ultralite 1.3 |
| Inherits: |
Properties
Detailed Description
A keyframe group contains all keyframes for a specific property of an item. It always belongs to a timeline.
KeyframeGroup {
target: myitem
property: "x"
Keyframe {
frame: 20
value: 50
}
Keyframe {
frame: 100
value: 1000
}
}See also Timeline and Keyframe.
Property Documentation
property : string
The property that is targeted by the keyframe group.
target : id
The item that is targeted by the keyframe group.
Available under certain Qt licenses.
Find out more.