| 900 | } |
| 901 | |
| 902 | void FormattedTextBlock::SetFont(Font* value) |
| 903 | { |
| 904 | if (_font == value) { |
| 905 | return; |
| 906 | } |
| 907 | |
| 908 | _font = value; |
| 909 | _parts.clear(); |
| 910 | _background.clear(); |
| 911 | } |
| 912 | |
| 913 | void FormattedTextBlock::SetScale(float value) |
| 914 | { |
no test coverage detected