(edge: Edge, v: number | string | undefined)
| 786 | this.markDirty() |
| 787 | } |
| 788 | setPosition(edge: Edge, v: number | string | undefined): void { |
| 789 | this.style.position[edge] = parseDimension(v) |
| 790 | this._hasPosition = hasAnyDefinedEdge(this.style.position) |
| 791 | this.markDirty() |
| 792 | } |
| 793 | setPositionPercent(edge: Edge, v: number): void { |
| 794 | this.style.position[edge] = percentValue(v) |
| 795 | this._hasPosition = true |
nothing calls this directly
no test coverage detected