()
| 233 | } |
| 234 | |
| 235 | public get height(): number { |
| 236 | this.ensureSizeCorrect(); |
| 237 | if (this._relations?.sizeDirty) { |
| 238 | this._relations.ensureRelationsSizeCorrect(); |
| 239 | } |
| 240 | return this._height; |
| 241 | } |
| 242 | |
| 243 | public set height(value: number) { |
| 244 | this.setSize(this._rawWidth, value); |
nothing calls this directly
no test coverage detected