@sapui5/ts-types 1.100.2 → 1.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +376 -30
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +6 -2
  8. package/types/sap.f.d.ts +2015 -119
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +77 -64
  11. package/types/sap.fe.macros.d.ts +92 -40
  12. package/types/sap.fe.navigation.d.ts +148 -74
  13. package/types/sap.fe.templates.d.ts +115 -187
  14. package/types/sap.fe.test.d.ts +539 -25
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7242 -516
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16699 -1186
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +209 -18
  25. package/types/sap.sac.df.d.ts +2196 -0
  26. package/types/sap.sac.grid.d.ts +115 -8
  27. package/types/sap.suite.ui.commons.d.ts +5532 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +226 -31
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +4005 -289
  34. package/types/sap.ui.core.d.ts +6317 -336
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +247 -73
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +9 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +39 -6
  47. package/types/sap.ui.table.d.ts +1060 -113
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +6027 -327
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +2036 -161
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +903 -88
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +249 -1688
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +1505 -4036
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace zen {
@@ -15,14 +15,16 @@ declare namespace sap {
15
15
  */
16
16
  width?:
17
17
  | sap.ui.core.CSSSize
18
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
18
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
19
+ | `{${string}}`;
19
20
 
20
21
  /**
21
22
  * Height of the Crosstab.
22
23
  */
23
24
  height?:
24
25
  | sap.ui.core.CSSSize
25
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
26
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
27
+ | `{${string}}`;
26
28
  }
27
29
 
28
30
  interface $DataCellSettings extends sap.ui.core.$ControlSettings {
@@ -34,39 +36,60 @@ declare namespace sap {
34
36
  /**
35
37
  * the area of the data cell
36
38
  */
37
- area?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
39
+ area?:
40
+ | object
41
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
42
+ | `{${string}}`;
38
43
 
39
44
  /**
40
45
  * the row of the data cell
41
46
  */
42
- row?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
47
+ row?:
48
+ | int
49
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
50
+ | `{${string}}`;
43
51
 
44
52
  /**
45
53
  * the column of the data cell
46
54
  */
47
- col?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
55
+ col?:
56
+ | int
57
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
58
+ | `{${string}}`;
48
59
 
49
60
  /**
50
61
  * the table row of the data cell
51
62
  */
52
- tableRow?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
63
+ tableRow?:
64
+ | int
65
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
66
+ | `{${string}}`;
53
67
 
54
68
  /**
55
69
  * the table column of the data cell
56
70
  */
57
- tableCol?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
71
+ tableCol?:
72
+ | int
73
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
74
+ | `{${string}}`;
58
75
  }
59
76
 
60
77
  interface $HeaderCellSettings extends sap.ui.core.$ControlSettings {
61
78
  /**
62
79
  * Rowspan of the cell
63
80
  */
64
- rowSpan?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
81
+ rowSpan?:
82
+ | int
83
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
84
+ | `{${string}}`;
65
85
 
66
86
  /**
67
87
  * Colspan of the cell
68
88
  */
69
- colSpan?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
89
+ colSpan?:
90
+ | int
91
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
92
+ | `{${string}}`;
70
93
 
71
94
  /**
72
95
  * Text of the cell
@@ -76,7 +99,10 @@ declare namespace sap {
76
99
  /**
77
100
  * helper to format the cell
78
101
  */
79
- formatter?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
102
+ formatter?:
103
+ | object
104
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
105
+ | `{${string}}`;
80
106
 
81
107
  /**
82
108
  * whether to merge the cell if the keys are equal
@@ -96,32 +122,50 @@ declare namespace sap {
96
122
  /**
97
123
  * area of the cell
98
124
  */
99
- area?: object | sap.ui.base.ManagedObject.PropertyBindingInfo;
125
+ area?:
126
+ | object
127
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
128
+ | `{${string}}`;
100
129
 
101
130
  /**
102
131
  * the effective col span
103
132
  */
104
- effectiveColSpan?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
133
+ effectiveColSpan?:
134
+ | int
135
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
136
+ | `{${string}}`;
105
137
 
106
138
  /**
107
139
  * the effective row span
108
140
  */
109
- effectiveRowSpan?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
141
+ effectiveRowSpan?:
142
+ | int
143
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
144
+ | `{${string}}`;
110
145
 
111
146
  /**
112
147
  * the row of the cell in the crosstab
113
148
  */
114
- row?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
149
+ row?:
150
+ | int
151
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
152
+ | `{${string}}`;
115
153
 
116
154
  /**
117
155
  * the column of the cell in the crosstab
118
156
  */
119
- col?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
157
+ col?:
158
+ | int
159
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
160
+ | `{${string}}`;
120
161
 
121
162
  /**
122
163
  * the level of the cell
123
164
  */
124
- level?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
165
+ level?:
166
+ | int
167
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
168
+ | `{${string}}`;
125
169
 
126
170
  /**
127
171
  * the drillstate of the cell
@@ -147,22 +191,34 @@ declare namespace sap {
147
191
  *
148
192
  * the IE8 row span
149
193
  */
150
- htmlIE8RowSpan?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
194
+ htmlIE8RowSpan?:
195
+ | int
196
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
197
+ | `{${string}}`;
151
198
 
152
199
  /**
153
200
  * the text sort index
154
201
  */
155
- sortTextIndex?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
202
+ sortTextIndex?:
203
+ | int
204
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
205
+ | `{${string}}`;
156
206
 
157
207
  /**
158
208
  * the row of the tabe
159
209
  */
160
- tableRow?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
210
+ tableRow?:
211
+ | int
212
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
213
+ | `{${string}}`;
161
214
 
162
215
  /**
163
216
  * the column of the table
164
217
  */
165
- tableCol?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
218
+ tableCol?:
219
+ | int
220
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
221
+ | `{${string}}`;
166
222
 
167
223
  /**
168
224
  * the alignment of the cell
@@ -227,6 +283,8 @@ declare namespace sap {
227
283
  * the information contained in `oClassInfo`.
228
284
  *
229
285
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
286
+ *
287
+ * @returns Created class / constructor function
230
288
  */
231
289
  static extend<T extends Record<string, unknown>>(
232
290
  /**
@@ -245,18 +303,24 @@ declare namespace sap {
245
303
  ): Function;
246
304
  /**
247
305
  * Returns a metadata object for class sap.zen.crosstab.Crosstab.
306
+ *
307
+ * @returns Metadata object describing this class
248
308
  */
249
309
  static getMetadata(): sap.ui.core.ElementMetadata;
250
310
  /**
251
311
  * Gets current value of property {@link #getHeight height}.
252
312
  *
253
313
  * Height of the Crosstab.
314
+ *
315
+ * @returns Value of property `height`
254
316
  */
255
317
  getHeight(): sap.ui.core.CSSSize;
256
318
  /**
257
319
  * Gets current value of property {@link #getWidth width}.
258
320
  *
259
321
  * Width of the Crosstab.
322
+ *
323
+ * @returns Value of property `width`
260
324
  */
261
325
  getWidth(): sap.ui.core.CSSSize;
262
326
  /**
@@ -265,6 +329,8 @@ declare namespace sap {
265
329
  * Height of the Crosstab.
266
330
  *
267
331
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
332
+ *
333
+ * @returns Reference to `this` in order to allow method chaining
268
334
  */
269
335
  setHeight(
270
336
  /**
@@ -278,6 +344,8 @@ declare namespace sap {
278
344
  * Width of the Crosstab.
279
345
  *
280
346
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
347
+ *
348
+ * @returns Reference to `this` in order to allow method chaining
281
349
  */
282
350
  setWidth(
283
351
  /**
@@ -328,6 +396,8 @@ declare namespace sap {
328
396
  * the information contained in `oClassInfo`.
329
397
  *
330
398
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
399
+ *
400
+ * @returns Created class / constructor function
331
401
  */
332
402
  static extend<T extends Record<string, unknown>>(
333
403
  /**
@@ -346,6 +416,8 @@ declare namespace sap {
346
416
  ): Function;
347
417
  /**
348
418
  * Returns a metadata object for class sap.zen.crosstab.DataCell.
419
+ *
420
+ * @returns Metadata object describing this class
349
421
  */
350
422
  static getMetadata(): sap.ui.core.ElementMetadata;
351
423
 
@@ -354,36 +426,48 @@ declare namespace sap {
354
426
  * Gets current value of property {@link #getArea area}.
355
427
  *
356
428
  * the area of the data cell
429
+ *
430
+ * @returns Value of property `area`
357
431
  */
358
432
  getArea(): object;
359
433
  /**
360
434
  * Gets current value of property {@link #getCol col}.
361
435
  *
362
436
  * the column of the data cell
437
+ *
438
+ * @returns Value of property `col`
363
439
  */
364
440
  getCol(): int;
365
441
  /**
366
442
  * Gets current value of property {@link #getRow row}.
367
443
  *
368
444
  * the row of the data cell
445
+ *
446
+ * @returns Value of property `row`
369
447
  */
370
448
  getRow(): int;
371
449
  /**
372
450
  * Gets current value of property {@link #getTableCol tableCol}.
373
451
  *
374
452
  * the table column of the data cell
453
+ *
454
+ * @returns Value of property `tableCol`
375
455
  */
376
456
  getTableCol(): int;
377
457
  /**
378
458
  * Gets current value of property {@link #getTableRow tableRow}.
379
459
  *
380
460
  * the table row of the data cell
461
+ *
462
+ * @returns Value of property `tableRow`
381
463
  */
382
464
  getTableRow(): int;
383
465
  /**
384
466
  * Gets current value of property {@link #getText text}.
385
467
  *
386
468
  * the text of the data cell
469
+ *
470
+ * @returns Value of property `text`
387
471
  */
388
472
  getText(): string;
389
473
  /**
@@ -392,6 +476,8 @@ declare namespace sap {
392
476
  * the area of the data cell
393
477
  *
394
478
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
479
+ *
480
+ * @returns Reference to `this` in order to allow method chaining
395
481
  */
396
482
  setArea(
397
483
  /**
@@ -405,6 +491,8 @@ declare namespace sap {
405
491
  * the column of the data cell
406
492
  *
407
493
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
494
+ *
495
+ * @returns Reference to `this` in order to allow method chaining
408
496
  */
409
497
  setCol(
410
498
  /**
@@ -418,6 +506,8 @@ declare namespace sap {
418
506
  * the row of the data cell
419
507
  *
420
508
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
509
+ *
510
+ * @returns Reference to `this` in order to allow method chaining
421
511
  */
422
512
  setRow(
423
513
  /**
@@ -431,6 +521,8 @@ declare namespace sap {
431
521
  * the table column of the data cell
432
522
  *
433
523
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
524
+ *
525
+ * @returns Reference to `this` in order to allow method chaining
434
526
  */
435
527
  setTableCol(
436
528
  /**
@@ -444,6 +536,8 @@ declare namespace sap {
444
536
  * the table row of the data cell
445
537
  *
446
538
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
539
+ *
540
+ * @returns Reference to `this` in order to allow method chaining
447
541
  */
448
542
  setTableRow(
449
543
  /**
@@ -457,6 +551,8 @@ declare namespace sap {
457
551
  * the text of the data cell
458
552
  *
459
553
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
554
+ *
555
+ * @returns Reference to `this` in order to allow method chaining
460
556
  */
461
557
  setText(
462
558
  /**
@@ -507,6 +603,8 @@ declare namespace sap {
507
603
  * the information contained in `oClassInfo`.
508
604
  *
509
605
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
606
+ *
607
+ * @returns Created class / constructor function
510
608
  */
511
609
  static extend<T extends Record<string, unknown>>(
512
610
  /**
@@ -525,66 +623,88 @@ declare namespace sap {
525
623
  ): Function;
526
624
  /**
527
625
  * Returns a metadata object for class sap.zen.crosstab.HeaderCell.
626
+ *
627
+ * @returns Metadata object describing this class
528
628
  */
529
629
  static getMetadata(): sap.ui.core.ElementMetadata;
530
630
  /**
531
631
  * Gets current value of property {@link #getAlignment alignment}.
532
632
  *
533
633
  * the alignment of the cell
634
+ *
635
+ * @returns Value of property `alignment`
534
636
  */
535
637
  getAlignment(): string;
536
638
  /**
537
639
  * Gets current value of property {@link #getArea area}.
538
640
  *
539
641
  * area of the cell
642
+ *
643
+ * @returns Value of property `area`
540
644
  */
541
645
  getArea(): object;
542
646
  /**
543
647
  * Gets current value of property {@link #getCol col}.
544
648
  *
545
649
  * the column of the cell in the crosstab
650
+ *
651
+ * @returns Value of property `col`
546
652
  */
547
653
  getCol(): int;
548
654
  /**
549
655
  * Gets current value of property {@link #getColSpan colSpan}.
550
656
  *
551
657
  * Colspan of the cell
658
+ *
659
+ * @returns Value of property `colSpan`
552
660
  */
553
661
  getColSpan(): int;
554
662
  /**
555
663
  * Gets current value of property {@link #getDrillState drillState}.
556
664
  *
557
665
  * the drillstate of the cell
666
+ *
667
+ * @returns Value of property `drillState`
558
668
  */
559
669
  getDrillState(): string;
560
670
  /**
561
671
  * Gets current value of property {@link #getEffectiveColSpan effectiveColSpan}.
562
672
  *
563
673
  * the effective col span
674
+ *
675
+ * @returns Value of property `effectiveColSpan`
564
676
  */
565
677
  getEffectiveColSpan(): int;
566
678
  /**
567
679
  * Gets current value of property {@link #getEffectiveRowSpan effectiveRowSpan}.
568
680
  *
569
681
  * the effective row span
682
+ *
683
+ * @returns Value of property `effectiveRowSpan`
570
684
  */
571
685
  getEffectiveRowSpan(): int;
572
686
  /**
573
687
  * Gets current value of property {@link #getFormatter formatter}.
574
688
  *
575
689
  * helper to format the cell
690
+ *
691
+ * @returns Value of property `formatter`
576
692
  */
577
693
  getFormatter(): object;
578
694
  /**
579
695
  * Gets current value of property {@link #getHierarchyAction hierarchyAction}.
580
696
  *
581
697
  * the hierarcyh action of the cell
698
+ *
699
+ * @returns Value of property `hierarchyAction`
582
700
  */
583
701
  getHierarchyAction(): string;
584
702
  /**
585
703
  * Gets current value of property {@link #getHierarchyTooltip hierarchyTooltip}.
586
704
  *
587
705
  * the hierarchy tooltip
706
+ *
707
+ * @returns Value of property `hierarchyTooltip`
588
708
  */
589
709
  getHierarchyTooltip(): string;
590
710
  /**
@@ -595,84 +715,112 @@ declare namespace sap {
595
715
  * the IE8 row span
596
716
  *
597
717
  * Default value is `1`.
718
+ *
719
+ * @returns Value of property `htmlIE8RowSpan`
598
720
  */
599
721
  getHtmlIE8RowSpan(): int;
600
722
  /**
601
723
  * Gets current value of property {@link #getLevel level}.
602
724
  *
603
725
  * the level of the cell
726
+ *
727
+ * @returns Value of property `level`
604
728
  */
605
729
  getLevel(): int;
606
730
  /**
607
731
  * Gets current value of property {@link #getMemberId memberId}.
608
732
  *
609
733
  * the id of the associated member
734
+ *
735
+ * @returns Value of property `memberId`
610
736
  */
611
737
  getMemberId(): string;
612
738
  /**
613
739
  * Gets current value of property {@link #getMergeKey mergeKey}.
614
740
  *
615
741
  * whether to merge the cell if the keys are equal
742
+ *
743
+ * @returns Value of property `mergeKey`
616
744
  */
617
745
  getMergeKey(): string;
618
746
  /**
619
747
  * Gets current value of property {@link #getNodeAlignment nodeAlignment}.
620
748
  *
621
749
  * the node alignment
750
+ *
751
+ * @returns Value of property `nodeAlignment`
622
752
  */
623
753
  getNodeAlignment(): string;
624
754
  /**
625
755
  * Gets current value of property {@link #getParentMemberId parentMemberId}.
626
756
  *
627
757
  * the id of the parent of the associated member
758
+ *
759
+ * @returns Value of property `parentMemberId`
628
760
  */
629
761
  getParentMemberId(): string;
630
762
  /**
631
763
  * Gets current value of property {@link #getRow row}.
632
764
  *
633
765
  * the row of the cell in the crosstab
766
+ *
767
+ * @returns Value of property `row`
634
768
  */
635
769
  getRow(): int;
636
770
  /**
637
771
  * Gets current value of property {@link #getRowSpan rowSpan}.
638
772
  *
639
773
  * Rowspan of the cell
774
+ *
775
+ * @returns Value of property `rowSpan`
640
776
  */
641
777
  getRowSpan(): int;
642
778
  /**
643
779
  * Gets current value of property {@link #getSort sort}.
644
780
  *
645
781
  * sorting
782
+ *
783
+ * @returns Value of property `sort`
646
784
  */
647
785
  getSort(): string;
648
786
  /**
649
787
  * Gets current value of property {@link #getSortAction sortAction}.
650
788
  *
651
789
  * sort action
790
+ *
791
+ * @returns Value of property `sortAction`
652
792
  */
653
793
  getSortAction(): string;
654
794
  /**
655
795
  * Gets current value of property {@link #getSortTextIndex sortTextIndex}.
656
796
  *
657
797
  * the text sort index
798
+ *
799
+ * @returns Value of property `sortTextIndex`
658
800
  */
659
801
  getSortTextIndex(): int;
660
802
  /**
661
803
  * Gets current value of property {@link #getTableCol tableCol}.
662
804
  *
663
805
  * the column of the table
806
+ *
807
+ * @returns Value of property `tableCol`
664
808
  */
665
809
  getTableCol(): int;
666
810
  /**
667
811
  * Gets current value of property {@link #getTableRow tableRow}.
668
812
  *
669
813
  * the row of the tabe
814
+ *
815
+ * @returns Value of property `tableRow`
670
816
  */
671
817
  getTableRow(): int;
672
818
  /**
673
819
  * Gets current value of property {@link #getText text}.
674
820
  *
675
821
  * Text of the cell
822
+ *
823
+ * @returns Value of property `text`
676
824
  */
677
825
  getText(): string;
678
826
  /**
@@ -681,6 +829,8 @@ declare namespace sap {
681
829
  * the alignment of the cell
682
830
  *
683
831
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
832
+ *
833
+ * @returns Reference to `this` in order to allow method chaining
684
834
  */
685
835
  setAlignment(
686
836
  /**
@@ -694,6 +844,8 @@ declare namespace sap {
694
844
  * area of the cell
695
845
  *
696
846
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
847
+ *
848
+ * @returns Reference to `this` in order to allow method chaining
697
849
  */
698
850
  setArea(
699
851
  /**
@@ -707,6 +859,8 @@ declare namespace sap {
707
859
  * the column of the cell in the crosstab
708
860
  *
709
861
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
862
+ *
863
+ * @returns Reference to `this` in order to allow method chaining
710
864
  */
711
865
  setCol(
712
866
  /**
@@ -720,6 +874,8 @@ declare namespace sap {
720
874
  * Colspan of the cell
721
875
  *
722
876
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
877
+ *
878
+ * @returns Reference to `this` in order to allow method chaining
723
879
  */
724
880
  setColSpan(
725
881
  /**
@@ -733,6 +889,8 @@ declare namespace sap {
733
889
  * the drillstate of the cell
734
890
  *
735
891
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
892
+ *
893
+ * @returns Reference to `this` in order to allow method chaining
736
894
  */
737
895
  setDrillState(
738
896
  /**
@@ -746,6 +904,8 @@ declare namespace sap {
746
904
  * the effective col span
747
905
  *
748
906
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
907
+ *
908
+ * @returns Reference to `this` in order to allow method chaining
749
909
  */
750
910
  setEffectiveColSpan(
751
911
  /**
@@ -759,6 +919,8 @@ declare namespace sap {
759
919
  * the effective row span
760
920
  *
761
921
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
922
+ *
923
+ * @returns Reference to `this` in order to allow method chaining
762
924
  */
763
925
  setEffectiveRowSpan(
764
926
  /**
@@ -772,6 +934,8 @@ declare namespace sap {
772
934
  * helper to format the cell
773
935
  *
774
936
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
937
+ *
938
+ * @returns Reference to `this` in order to allow method chaining
775
939
  */
776
940
  setFormatter(
777
941
  /**
@@ -785,6 +949,8 @@ declare namespace sap {
785
949
  * the hierarcyh action of the cell
786
950
  *
787
951
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
952
+ *
953
+ * @returns Reference to `this` in order to allow method chaining
788
954
  */
789
955
  setHierarchyAction(
790
956
  /**
@@ -798,6 +964,8 @@ declare namespace sap {
798
964
  * the hierarchy tooltip
799
965
  *
800
966
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
967
+ *
968
+ * @returns Reference to `this` in order to allow method chaining
801
969
  */
802
970
  setHierarchyTooltip(
803
971
  /**
@@ -815,6 +983,8 @@ declare namespace sap {
815
983
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
816
984
  *
817
985
  * Default value is `1`.
986
+ *
987
+ * @returns Reference to `this` in order to allow method chaining
818
988
  */
819
989
  setHtmlIE8RowSpan(
820
990
  /**
@@ -828,6 +998,8 @@ declare namespace sap {
828
998
  * the level of the cell
829
999
  *
830
1000
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1001
+ *
1002
+ * @returns Reference to `this` in order to allow method chaining
831
1003
  */
832
1004
  setLevel(
833
1005
  /**
@@ -841,6 +1013,8 @@ declare namespace sap {
841
1013
  * the id of the associated member
842
1014
  *
843
1015
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1016
+ *
1017
+ * @returns Reference to `this` in order to allow method chaining
844
1018
  */
845
1019
  setMemberId(
846
1020
  /**
@@ -854,6 +1028,8 @@ declare namespace sap {
854
1028
  * whether to merge the cell if the keys are equal
855
1029
  *
856
1030
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1031
+ *
1032
+ * @returns Reference to `this` in order to allow method chaining
857
1033
  */
858
1034
  setMergeKey(
859
1035
  /**
@@ -867,6 +1043,8 @@ declare namespace sap {
867
1043
  * the node alignment
868
1044
  *
869
1045
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1046
+ *
1047
+ * @returns Reference to `this` in order to allow method chaining
870
1048
  */
871
1049
  setNodeAlignment(
872
1050
  /**
@@ -880,6 +1058,8 @@ declare namespace sap {
880
1058
  * the id of the parent of the associated member
881
1059
  *
882
1060
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1061
+ *
1062
+ * @returns Reference to `this` in order to allow method chaining
883
1063
  */
884
1064
  setParentMemberId(
885
1065
  /**
@@ -893,6 +1073,8 @@ declare namespace sap {
893
1073
  * the row of the cell in the crosstab
894
1074
  *
895
1075
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1076
+ *
1077
+ * @returns Reference to `this` in order to allow method chaining
896
1078
  */
897
1079
  setRow(
898
1080
  /**
@@ -906,6 +1088,8 @@ declare namespace sap {
906
1088
  * Rowspan of the cell
907
1089
  *
908
1090
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1091
+ *
1092
+ * @returns Reference to `this` in order to allow method chaining
909
1093
  */
910
1094
  setRowSpan(
911
1095
  /**
@@ -919,6 +1103,8 @@ declare namespace sap {
919
1103
  * sorting
920
1104
  *
921
1105
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1106
+ *
1107
+ * @returns Reference to `this` in order to allow method chaining
922
1108
  */
923
1109
  setSort(
924
1110
  /**
@@ -932,6 +1118,8 @@ declare namespace sap {
932
1118
  * sort action
933
1119
  *
934
1120
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1121
+ *
1122
+ * @returns Reference to `this` in order to allow method chaining
935
1123
  */
936
1124
  setSortAction(
937
1125
  /**
@@ -945,6 +1133,8 @@ declare namespace sap {
945
1133
  * the text sort index
946
1134
  *
947
1135
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1136
+ *
1137
+ * @returns Reference to `this` in order to allow method chaining
948
1138
  */
949
1139
  setSortTextIndex(
950
1140
  /**
@@ -958,6 +1148,8 @@ declare namespace sap {
958
1148
  * the column of the table
959
1149
  *
960
1150
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1151
+ *
1152
+ * @returns Reference to `this` in order to allow method chaining
961
1153
  */
962
1154
  setTableCol(
963
1155
  /**
@@ -971,6 +1163,8 @@ declare namespace sap {
971
1163
  * the row of the tabe
972
1164
  *
973
1165
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1166
+ *
1167
+ * @returns Reference to `this` in order to allow method chaining
974
1168
  */
975
1169
  setTableRow(
976
1170
  /**
@@ -984,6 +1178,8 @@ declare namespace sap {
984
1178
  * Text of the cell
985
1179
  *
986
1180
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1181
+ *
1182
+ * @returns Reference to `this` in order to allow method chaining
987
1183
  */
988
1184
  setText(
989
1185
  /**