( self, writer )
| 1130 | raise Exception( "Font.tag_value( '%s' )." % value ) |
| 1131 | |
| 1132 | def write( self, writer ): |
| 1133 | writer.begin( self ) |
| 1134 | self.write_objects( writer, ( "size", "thickness" ), False ) |
| 1135 | if self.italic: |
| 1136 | writer.write_text( "italic" ) |
| 1137 | writer.end() |
| 1138 | |
| 1139 | def copy( self, trans ): |
| 1140 | obj = Font( self.obj_name ) |
nothing calls this directly
no test coverage detected