(v: number | string | undefined)
| 697 | this.markDirty() |
| 698 | } |
| 699 | setMaxHeight(v: number | string | undefined): void { |
| 700 | this.style.maxHeight = parseDimension(v) |
| 701 | this.markDirty() |
| 702 | } |
| 703 | setMaxHeightPercent(v: number): void { |
| 704 | this.style.maxHeight = percentValue(v) |
| 705 | this.markDirty() |
nothing calls this directly
no test coverage detected