(v: number)
| 693 | this.markDirty() |
| 694 | } |
| 695 | setMaxWidthPercent(v: number): void { |
| 696 | this.style.maxWidth = percentValue(v) |
| 697 | this.markDirty() |
| 698 | } |
| 699 | setMaxHeight(v: number | string | undefined): void { |
| 700 | this.style.maxHeight = parseDimension(v) |
| 701 | this.markDirty() |
nothing calls this directly
no test coverage detected