(edge: Edge, v: number)
| 824 | this.markDirty() |
| 825 | } |
| 826 | setMarginPercent(edge: Edge, v: number): void { |
| 827 | this.style.margin[edge] = percentValue(v) |
| 828 | this._hasAutoMargin = hasAnyAutoEdge(this.style.margin) |
| 829 | this._hasMargin = true |
| 830 | this.markDirty() |
| 831 | } |
| 832 | setMarginAuto(edge: Edge): void { |
| 833 | this.style.margin[edge] = AUTO_VALUE |
| 834 | this._hasAutoMargin = true |
nothing calls this directly
no test coverage detected