(v: number | string | undefined)
| 689 | this.markDirty() |
| 690 | } |
| 691 | setMaxWidth(v: number | string | undefined): void { |
| 692 | this.style.maxWidth = parseDimension(v) |
| 693 | this.markDirty() |
| 694 | } |
| 695 | setMaxWidthPercent(v: number): void { |
| 696 | this.style.maxWidth = percentValue(v) |
| 697 | this.markDirty() |
nothing calls this directly
no test coverage detected