Back to home page

EIC code displayed by LXR

 
 

    


Warning, /firebird/firebird-ng/src/app/pages/shell-example/shell-example.component.ts is written in an unsupported language. File is not indexed.

0001 import {Component, ViewChild} from '@angular/core';
0002 import {DisplayShellComponent} from "../../components/display-shell/display-shell.component";
0003 
0004 @Component({
0005   selector: 'app-shell-example',
0006   standalone: true,
0007   imports: [
0008     DisplayShellComponent
0009   ],
0010   templateUrl: './shell-example.component.html',
0011   styleUrl: './shell-example.component.scss'
0012 })
0013 export class ShellExampleComponent {
0014 
0015   @ViewChild(DisplayShellComponent)
0016   displayShellComponent!: DisplayShellComponent;
0017 
0018   toggleLeftPane() {
0019     this.displayShellComponent.toggleLeftPane();
0020   }
0021 
0022   toggleRightPane() {
0023     this.displayShellComponent.toggleRightPane();
0024   }
0025 
0026 }