An identifier that specifies the group to which the frame belongs, used by animate to select a subset of frames. The 'group' property is a string and must be specified as: - A string - A number that will be converted to a string Returns
(self)
| 50 | |
| 51 | @property |
| 52 | def group(self): |
| 53 | """ |
| 54 | An identifier that specifies the group to which the frame |
| 55 | belongs, used by animate to select a subset of frames. |
| 56 | |
| 57 | The 'group' property is a string and must be specified as: |
| 58 | - A string |
| 59 | - A number that will be converted to a string |
| 60 | |
| 61 | Returns |
| 62 | ------- |
| 63 | str |
| 64 | """ |
| 65 | return self["group"] |
| 66 | |
| 67 | @group.setter |
| 68 | def group(self, val): |
no outgoing calls