(edge: Edge, v: number | string | undefined)
| 836 | this.markDirty() |
| 837 | } |
| 838 | setPadding(edge: Edge, v: number | string | undefined): void { |
| 839 | this.style.padding[edge] = parseDimension(v) |
| 840 | this._hasPadding = hasAnyDefinedEdge(this.style.padding) |
| 841 | this.markDirty() |
| 842 | } |
| 843 | setPaddingPercent(edge: Edge, v: number): void { |
| 844 | this.style.padding[edge] = percentValue(v) |
| 845 | this._hasPadding = true |
nothing calls this directly
no test coverage detected