()
| 221 | // Size | 尺寸 |
| 222 | |
| 223 | public get width(): number { |
| 224 | this.ensureSizeCorrect(); |
| 225 | if (this._relations?.sizeDirty) { |
| 226 | this._relations.ensureRelationsSizeCorrect(); |
| 227 | } |
| 228 | return this._width; |
| 229 | } |
| 230 | |
| 231 | public set width(value: number) { |
| 232 | this.setSize(value, this._rawHeight); |
nothing calls this directly
no test coverage detected