Sets text size in points. Has no effect if value is not greater than or equal to zero.
(float value)
| 375 | * Sets text size in points. Has no effect if value is not greater than or equal to zero. |
| 376 | */ |
| 377 | public Font setSize(float value) { |
| 378 | _resetMetrics(); |
| 379 | Stats.onNativeCall(); |
| 380 | _nSetSize(_ptr, value); |
| 381 | return this; |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * Sets text scale on x-axis. Default value is 1. |
no test coverage detected