Lines Matching full:title
65 @Prop title: Model;
67 this.title = new Model('Hi');
88 @Prop title: Model;
90 this.title.value = 'Hi';
92 this.title.info.value = 'ArkUI';
101 @Prop title: string[];
103 this.title = ['1'];
105 this.title[0] = '2';
107 this.title.pop();
109 this.title.push('3');
332 public title: string;
336 constructor(title: string, pages: number) {
337 this.title = title;
348 Text(this.book.title)
380 public title: string;
384 constructor(title: string, pages: number) {
386 this.title = title;
397 Text(` ${this.book ? this.book.title : 'Book is undefined'}`).fontColor('#e6000000')
485 public title: string;
489 constructor(title: string, pages: number) {
491 this.title = title;
584 public title: string;
586 constructor(title: string) {
587 this.title = title;
622 Button('change Son title')
628 this.person.son.title = 'ArkUI';
642 Text(this.person.son.title)
651 this.person.son.title = 'openHarmony';
666 Text(this.child.title)
675 this.child.title = 'Bye Bye';