(self, style)
| 842 | raise GraphicsError, BAD_OPTION |
| 843 | |
| 844 | def setStyle(self, style): |
| 845 | if style in ['bold','normal','italic', 'bold italic']: |
| 846 | self._setFontComponent(2,style) |
| 847 | else: |
| 848 | raise GraphicsError, BAD_OPTION |
| 849 | |
| 850 | def setTextColor(self, color): |
| 851 | self.color=color |
nothing calls this directly
no test coverage detected