PySide6.QtCore.QPauseAnimation¶
- class QPauseAnimation¶
- The - QPauseAnimationclass provides a pause for- QSequentialAnimationGroup. More…- Added in version 4.6. - Synopsis¶- Properties¶- durationᅟ- The duration of the pause
 - Methods¶- def - __init__()
- def - setDuration()
 - 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 - Detailed Description¶- If you wish to introduce a delay between animations in a - QSequentialAnimationGroup, you can insert a- QPauseAnimation. This class does not animate anything, but does not- finishbefore a specified number of milliseconds have elapsed from when it was started. You specify the duration of the pause in the constructor. It can also be set directly with- setDuration().- It is not necessary to construct a - QPauseAnimationyourself.- QSequentialAnimationGroupprovides the convenience functions- addPause()and- insertPause(). These functions simply take the number of milliseconds the pause should last.- See also - Note - Properties can be used directly when - from __feature__ import true_propertyis used or via accessor functions otherwise.- property durationᅟ: int¶
 - This property holds the duration of the pause.. - The duration of the pause. The duration should not be negative. The default duration is 250 milliseconds. - Access functions:
 - Constructs a - QPauseAnimation.- parentis passed to- QObject‘s constructor. The default duration is 0.- __init__(msecs[, parent=None])
- Parameters:
- msecs – int 
- parent – - QObject
 
 
 - Constructs a - QPauseAnimation.- msecsis the duration of the pause.- parentis passed to- QObject‘s constructor.- setDuration(msecs)¶
- Parameters:
- msecs – int 
 - See also - duration()
 - Setter of property - durationᅟ.