(renderArea: RenderArea, scrolling: boolean = false, gap: number = 0, defaultScroll: number = 0)
| 709 | } |
| 710 | |
| 711 | private displayArea(renderArea: RenderArea, scrolling: boolean = false, gap: number = 0, defaultScroll: number = 0): void{ |
| 712 | this.mainContentLocation.render(renderArea); |
| 713 | this.mainContentLocation.setScrolling(scrolling, defaultScroll); |
| 714 | if(scrolling == false) this.mainContentLocation.setContentGap(gap); |
| 715 | else this.mainContentLocation.setContentGap(0); |
| 716 | } |
| 717 | |
| 718 | private displayPlace(): void{ |
| 719 | this.displayArea(this.place.getRenderArea(), this.place.getScrolling(), this.place.getGap(), this.place.getDefaultScroll()); |
no test coverage detected