import { IPSFlexLayout } from './ipsflex-layout'; import { PSModelObjectImpl } from '../../psmodel-object-impl'; export class PSFlexLayoutImpl extends PSModelObjectImpl implements IPSFlexLayout { get align(): 'flex-start' | 'flex-end' | 'center' | 'space-between' | 'space-around' { return this.M.align; } get codeName(): string { return this.M.codeName; } get dir(): 'row' | 'row-reverse' | 'column' | 'column-reverse' { return this.M.dir; } get dynaModelFilePath(): string { return this.M.dynaModelFilePath; } get layout(): string { return this.M.layout; } get mOSFilePath(): string { return this.M.mOSFilePath; } get memo(): string { return this.M.memo; } get name(): string { return this.M.name; } get rTMOSFilePath(): string { return this.M.rTMOSFilePath; } get userCat(): string { return this.M.userCat; } get userTag(): string { return this.M.userTag; } get userTag2(): string { return this.M.userTag2; } get userTag3(): string { return this.M.userTag3; } get userTag4(): string { return this.M.userTag4; } get vAlign(): 'flex-start' | 'flex-end' | 'center' | 'baseline' | 'stretch' { return this.M.vAlign; } get cls(): string { return 'PSFlexLayoutImpl'; } instanceof(cls: string): boolean { if (cls == 'control.layout.IPSFlexLayout') return true; return super.instanceof(cls); } }