()
| 2541 | func (label *Label) TextAsString() string { return string(label.Text) } |
| 2542 | |
| 2543 | func (label *Label) TextAsInt() int { |
| 2544 | i, _ := strconv.Atoi(label.TextAsString()) |
| 2545 | return i |
| 2546 | } |
| 2547 | |
| 2548 | func (label *Label) TextSize() Vector { |
| 2549 | return globals.TextRenderer.MeasureText(label.Text, 1) |
no test coverage detected