(v: number)
| 685 | this.markDirty() |
| 686 | } |
| 687 | setMinHeightPercent(v: number): void { |
| 688 | this.style.minHeight = percentValue(v) |
| 689 | this.markDirty() |
| 690 | } |
| 691 | setMaxWidth(v: number | string | undefined): void { |
| 692 | this.style.maxWidth = parseDimension(v) |
| 693 | this.markDirty() |
nothing calls this directly
no test coverage detected