(sizeInPixels: number, previousSize?: number)
| 313 | } |
| 314 | |
| 315 | private _applySize(sizeInPixels: number, previousSize?: number): void { |
| 316 | const sizeToApply = Math.min(Math.max(sizeInPixels, this.minWidthPx, 0), this.maxWidthPx); |
| 317 | |
| 318 | this.resizeStrategy.applyColumnSize( |
| 319 | this.columnDef.cssClassFriendlyName, |
| 320 | this.elementRef.nativeElement!, |
| 321 | sizeToApply, |
| 322 | previousSize, |
| 323 | ); |
| 324 | } |
| 325 | |
| 326 | private _applyMinWidthPx(): void { |
| 327 | this.resizeStrategy.applyMinColumnSize( |
nothing calls this directly
no test coverage detected