(fontname:string)
| 30 | } |
| 31 | |
| 32 | set font(fontname:string) { |
| 33 | var tf = this.getTextFormat(); |
| 34 | tf.font = fontname; |
| 35 | this.setTextFormat(tf); |
| 36 | } |
| 37 | |
| 38 | get font():string { |
| 39 | return this.getTextFormat().font; |
nothing calls this directly
no test coverage detected