Copy styles from another Text instance. Args: text (Text): A Text instance to copy styles from, must be the same length.
(self, text: "Text")
| 1052 | return self |
| 1053 | |
| 1054 | def copy_styles(self, text: "Text") -> None: |
| 1055 | """Copy styles from another Text instance. |
| 1056 | |
| 1057 | Args: |
| 1058 | text (Text): A Text instance to copy styles from, must be the same length. |
| 1059 | """ |
| 1060 | self._spans.extend(text._spans) |
| 1061 | |
| 1062 | def split( |
| 1063 | self, |