(size:number)
| 20 | } |
| 21 | |
| 22 | set fontsize(size:number) { |
| 23 | var tf = this.getTextFormat(); |
| 24 | tf.size = size; |
| 25 | this.setTextFormat(tf); |
| 26 | } |
| 27 | |
| 28 | get fontsize():number { |
| 29 | return this.getTextFormat().fontsize; |
nothing calls this directly
no test coverage detected