(v: number | string | undefined)
| 681 | this.markDirty() |
| 682 | } |
| 683 | setMinHeight(v: number | string | undefined): void { |
| 684 | this.style.minHeight = parseDimension(v) |
| 685 | this.markDirty() |
| 686 | } |
| 687 | setMinHeightPercent(v: number): void { |
| 688 | this.style.minHeight = percentValue(v) |
| 689 | this.markDirty() |
nothing calls this directly
no test coverage detected