@openui5/ts-types 1.99.1 → 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.
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.99.1
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -22,7 +22,10 @@ declare namespace sap {
22
22
  * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
23
23
  * control.
24
24
  */
25
- limit?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
25
+ limit?:
26
+ | int
27
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
28
+ | `{${string}}`;
26
29
 
27
30
  /**
28
31
  * @SINCE 1.71
@@ -31,14 +34,16 @@ declare namespace sap {
31
34
  */
32
35
  enableNotification?:
33
36
  | boolean
34
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
37
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
38
+ | `{${string}}`;
35
39
 
36
40
  /**
37
41
  * Show header selector
38
42
  */
39
43
  showHeaderSelector?:
40
44
  | boolean
41
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
45
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
46
+ | `{${string}}`;
42
47
 
43
48
  /**
44
49
  * Selection mode of the plugin. This property controls whether single or multiple rows can be selected.
@@ -47,7 +52,8 @@ declare namespace sap {
47
52
  */
48
53
  selectionMode?:
49
54
  | sap.ui.table.SelectionMode
50
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
55
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
56
+ | `{${string}}`;
51
57
 
52
58
  /**
53
59
  * This event is fired when the selection is changed.
@@ -96,6 +102,8 @@ declare namespace sap {
96
102
  * enriches it with the information contained in `oClassInfo`.
97
103
  *
98
104
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.plugins.SelectionPlugin.extend}.
105
+ *
106
+ * @returns Created class / constructor function
99
107
  */
100
108
  static extend<T extends Record<string, unknown>>(
101
109
  /**
@@ -117,6 +125,8 @@ declare namespace sap {
117
125
  ): Function;
118
126
  /**
119
127
  * Returns a metadata object for class sap.ui.table.plugins.MultiSelectionPlugin.
128
+ *
129
+ * @returns Metadata object describing this class
120
130
  */
121
131
  static getMetadata(): sap.ui.core.ElementMetadata;
122
132
  /**
@@ -125,6 +135,8 @@ declare namespace sap {
125
135
  *
126
136
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
127
137
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
138
+ *
139
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
128
140
  */
129
141
  addSelectionInterval(
130
142
  /**
@@ -149,6 +161,8 @@ declare namespace sap {
149
161
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
150
162
  *
151
163
  * This event is fired when the selection is changed.
164
+ *
165
+ * @returns Reference to `this` in order to allow method chaining
152
166
  */
153
167
  attachSelectionChange(
154
168
  /**
@@ -174,6 +188,8 @@ declare namespace sap {
174
188
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
175
189
  *
176
190
  * This event is fired when the selection is changed.
191
+ *
192
+ * @returns Reference to `this` in order to allow method chaining
177
193
  */
178
194
  attachSelectionChange(
179
195
  /**
@@ -201,6 +217,8 @@ declare namespace sap {
201
217
  * this `sap.ui.table.plugins.MultiSelectionPlugin`.
202
218
  *
203
219
  * The passed function and listener object must match the ones used for event registration.
220
+ *
221
+ * @returns Reference to `this` in order to allow method chaining
204
222
  */
205
223
  detachSelectionChange(
206
224
  /**
@@ -214,6 +232,8 @@ declare namespace sap {
214
232
  ): this;
215
233
  /**
216
234
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
235
+ *
236
+ * @returns Reference to `this` in order to allow method chaining
217
237
  */
218
238
  fireSelectionChange(
219
239
  /**
@@ -242,6 +262,8 @@ declare namespace sap {
242
262
  * Enables notifications that are displayed once a selection has been limited.
243
263
  *
244
264
  * Default value is `false`.
265
+ *
266
+ * @returns Value of property `enableNotification`
245
267
  */
246
268
  getEnableNotification(): boolean;
247
269
  /**
@@ -258,10 +280,14 @@ declare namespace sap {
258
280
  * control.
259
281
  *
260
282
  * Default value is `200`.
283
+ *
284
+ * @returns Value of property `limit`
261
285
  */
262
286
  getLimit(): int;
263
287
  /**
264
288
  * Zero-based indices of selected indices, wrapped in an array. An empty array means nothing has been selected.
289
+ *
290
+ * @returns An array containing all selected indices
265
291
  */
266
292
  getSelectedIndices(): int[];
267
293
  /**
@@ -272,6 +298,8 @@ declare namespace sap {
272
298
  * removed.
273
299
  *
274
300
  * Default value is `MultiToggle`.
301
+ *
302
+ * @returns Value of property `selectionMode`
275
303
  */
276
304
  getSelectionMode(): sap.ui.table.SelectionMode;
277
305
  /**
@@ -280,10 +308,14 @@ declare namespace sap {
280
308
  * Show header selector
281
309
  *
282
310
  * Default value is `true`.
311
+ *
312
+ * @returns Value of property `showHeaderSelector`
283
313
  */
284
314
  getShowHeaderSelector(): boolean;
285
315
  /**
286
316
  * Returns the information whether the given index is selected.
317
+ *
318
+ * @returns `true` if the index is selected
287
319
  */
288
320
  isIndexSelected(
289
321
  /**
@@ -313,6 +345,8 @@ declare namespace sap {
313
345
  /**
314
346
  * Requests the binding contexts and adds all indices to the selection if the limit is disabled or the binding
315
347
  * length is smaller then the limit.
348
+ *
349
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
316
350
  */
317
351
  selectAll(
318
352
  /**
@@ -331,6 +365,8 @@ declare namespace sap {
331
365
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
332
366
  *
333
367
  * Default value is `false`.
368
+ *
369
+ * @returns Reference to `this` in order to allow method chaining
334
370
  */
335
371
  setEnableNotification(
336
372
  /**
@@ -354,6 +390,8 @@ declare namespace sap {
354
390
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
355
391
  *
356
392
  * Default value is `200`.
393
+ *
394
+ * @returns Reference to `this` in order to allow method chaining
357
395
  */
358
396
  setLimit(
359
397
  /**
@@ -363,6 +401,8 @@ declare namespace sap {
363
401
  ): this;
364
402
  /**
365
403
  * Requests the context and sets the selected index to `iIndex`.
404
+ *
405
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
366
406
  */
367
407
  setSelectedIndex(
368
408
  /**
@@ -381,6 +421,8 @@ declare namespace sap {
381
421
  *
382
422
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
383
423
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
424
+ *
425
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
384
426
  */
385
427
  setSelectionInterval(
386
428
  /**
@@ -407,6 +449,8 @@ declare namespace sap {
407
449
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
408
450
  *
409
451
  * Default value is `MultiToggle`.
452
+ *
453
+ * @returns Reference to `this` in order to allow method chaining
410
454
  */
411
455
  setSelectionMode(
412
456
  /**
@@ -422,6 +466,8 @@ declare namespace sap {
422
466
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
423
467
  *
424
468
  * Default value is `true`.
469
+ *
470
+ * @returns Reference to `this` in order to allow method chaining
425
471
  */
426
472
  setShowHeaderSelector(
427
473
  /**
@@ -454,6 +500,8 @@ declare namespace sap {
454
500
  * it with the information contained in `oClassInfo`.
455
501
  *
456
502
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
503
+ *
504
+ * @returns Created class / constructor function
457
505
  */
458
506
  static extend<T extends Record<string, unknown>>(
459
507
  /**
@@ -472,6 +520,8 @@ declare namespace sap {
472
520
  ): Function;
473
521
  /**
474
522
  * Returns a metadata object for class sap.ui.table.plugins.SelectionPlugin.
523
+ *
524
+ * @returns Metadata object describing this class
475
525
  */
476
526
  static getMetadata(): sap.ui.core.ElementMetadata;
477
527
  /**
@@ -482,6 +532,8 @@ declare namespace sap {
482
532
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
483
533
  *
484
534
  * This event is fired when the selection is changed.
535
+ *
536
+ * @returns Reference to `this` in order to allow method chaining
485
537
  */
486
538
  attachSelectionChange(
487
539
  /**
@@ -507,6 +559,8 @@ declare namespace sap {
507
559
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
508
560
  *
509
561
  * This event is fired when the selection is changed.
562
+ *
563
+ * @returns Reference to `this` in order to allow method chaining
510
564
  */
511
565
  attachSelectionChange(
512
566
  /**
@@ -524,6 +578,8 @@ declare namespace sap {
524
578
  * this `sap.ui.table.plugins.SelectionPlugin`.
525
579
  *
526
580
  * The passed function and listener object must match the ones used for event registration.
581
+ *
582
+ * @returns Reference to `this` in order to allow method chaining
527
583
  */
528
584
  detachSelectionChange(
529
585
  /**
@@ -537,6 +593,8 @@ declare namespace sap {
537
593
  ): this;
538
594
  /**
539
595
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
596
+ *
597
+ * @returns Reference to `this` in order to allow method chaining
540
598
  */
541
599
  fireSelectionChange(
542
600
  /**
@@ -559,26 +617,36 @@ declare namespace sap {
559
617
  /**
560
618
  * If defined a sum for this column is calculated
561
619
  */
562
- summed?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
620
+ summed?:
621
+ | boolean
622
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
623
+ | `{${string}}`;
563
624
 
564
625
  /**
565
626
  * Specifies that the dimension referred to by the column shall be included in the granularity of the data
566
627
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
567
628
  */
568
- inResult?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
629
+ inResult?:
630
+ | boolean
631
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
632
+ | `{${string}}`;
569
633
 
570
634
  /**
571
635
  * Specifies whether the column is displayed within the table even if it is grouped or not. A grouped column
572
636
  * has the same value for every rows within the group.
573
637
  */
574
- showIfGrouped?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
638
+ showIfGrouped?:
639
+ | boolean
640
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
641
+ | `{${string}}`;
575
642
 
576
643
  /**
577
644
  * If the column is grouped, this formatter is used to format the value in the group header
578
645
  */
579
646
  groupHeaderFormatter?:
580
647
  | any
581
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
648
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
649
+ | `{${string}}`;
582
650
  }
583
651
 
584
652
  interface $AnalyticalColumnMenuSettings
@@ -606,7 +674,10 @@ declare namespace sap {
606
674
  * });
607
675
  * ```
608
676
  */
609
- sumOnTop?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
677
+ sumOnTop?:
678
+ | boolean
679
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
680
+ | `{${string}}`;
610
681
 
611
682
  /**
612
683
  * @deprecated (since 1.44) - replaced by the `numberOfExpandedLevels` binding parameter
@@ -630,7 +701,8 @@ declare namespace sap {
630
701
  */
631
702
  numberOfExpandedLevels?:
632
703
  | int
633
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
704
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
705
+ | `{${string}}`;
634
706
 
635
707
  /**
636
708
  * @deprecated (since 1.44) - replaced by the `autoExpandMode` binding parameter
@@ -661,7 +733,8 @@ declare namespace sap {
661
733
  */
662
734
  columnVisibilityMenuSorter?:
663
735
  | any
664
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
736
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
737
+ | `{${string}}`;
665
738
 
666
739
  /**
667
740
  * @deprecated (since 1.76) - replaced by the `collapseRecursive` binding parameter
@@ -685,14 +758,18 @@ declare namespace sap {
685
758
  */
686
759
  collapseRecursive?:
687
760
  | boolean
688
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
761
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
762
+ | `{${string}}`;
689
763
 
690
764
  /**
691
765
  * @deprecated (since 1.21.2) - replaced by {@link sap.ui.table.Table#setShowOverlay}
692
766
  *
693
767
  * If dirty the content of the Table will be overlayed.
694
768
  */
695
- dirty?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
769
+ dirty?:
770
+ | boolean
771
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
772
+ | `{${string}}`;
696
773
  }
697
774
 
698
775
  interface $ColumnSettings extends sap.ui.core.$ElementSettings {
@@ -705,7 +782,8 @@ declare namespace sap {
705
782
  */
706
783
  width?:
707
784
  | sap.ui.core.CSSSize
708
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
785
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
786
+ | `{${string}}`;
709
787
 
710
788
  /**
711
789
  * @SINCE 1.44.1
@@ -715,7 +793,10 @@ declare namespace sap {
715
793
  * If a user adjusts the column width manually, the column width can become smaller. Minimal column width
716
794
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
717
795
  */
718
- minWidth?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
796
+ minWidth?:
797
+ | int
798
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
799
+ | `{${string}}`;
719
800
 
720
801
  /**
721
802
  * @deprecated (since 1.44) - this property has no effect. Use the property `minWidth` in combination with
@@ -726,13 +807,19 @@ declare namespace sap {
726
807
  * width. If all columns are set to not be flexible, an extra "dummy" column will be created at the end
727
808
  * of the table.
728
809
  */
729
- flexible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
810
+ flexible?:
811
+ | boolean
812
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
813
+ | `{${string}}`;
730
814
 
731
815
  /**
732
816
  * If set to true, the column can be resized either using the resize bar (by mouse) or using the keyboard
733
817
  * (SHIFT + Left/Right Arrow keys)
734
818
  */
735
- resizable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
819
+ resizable?:
820
+ | boolean
821
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
822
+ | `{${string}}`;
736
823
 
737
824
  /**
738
825
  * Horizontal alignment of the column content. Controls with a text align do not inherit the horizontal
@@ -740,13 +827,17 @@ declare namespace sap {
740
827
  */
741
828
  hAlign?:
742
829
  | sap.ui.core.HorizontalAlign
743
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
830
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
831
+ | `{${string}}`;
744
832
 
745
833
  /**
746
834
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
747
835
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
748
836
  */
749
- sorted?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
837
+ sorted?:
838
+ | boolean
839
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
840
+ | `{${string}}`;
750
841
 
751
842
  /**
752
843
  * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
@@ -754,7 +845,8 @@ declare namespace sap {
754
845
  */
755
846
  sortOrder?:
756
847
  | sap.ui.table.SortOrder
757
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
848
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
849
+ | `{${string}}`;
758
850
 
759
851
  /**
760
852
  * Specifies the binding property on which the column will sort. Since the column template may have composite
@@ -771,7 +863,10 @@ declare namespace sap {
771
863
  * the column header - it does not trigger the filter function. The column can be filtered using {@link
772
864
  * sap.ui.table.Table#filter}.
773
865
  */
774
- filtered?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
866
+ filtered?:
867
+ | boolean
868
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
869
+ | `{${string}}`;
775
870
 
776
871
  /**
777
872
  * Specifies the binding property on which the column shall be filtered. Since the column template may have
@@ -828,17 +923,26 @@ declare namespace sap {
828
923
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
829
924
  * #setFilterType} instead.
830
925
  */
831
- filterType?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
926
+ filterType?:
927
+ | any
928
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
929
+ | `{${string}}`;
832
930
 
833
931
  /**
834
932
  * Indicates if the column is grouped.
835
933
  */
836
- grouped?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
934
+ grouped?:
935
+ | boolean
936
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
937
+ | `{${string}}`;
837
938
 
838
939
  /**
839
940
  * Invisible controls are not rendered.
840
941
  */
841
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
942
+ visible?:
943
+ | boolean
944
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
945
+ | `{${string}}`;
842
946
 
843
947
  /**
844
948
  * @SINCE 1.11.1
@@ -856,7 +960,8 @@ declare namespace sap {
856
960
  */
857
961
  showFilterMenuEntry?:
858
962
  | boolean
859
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
963
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
964
+ | `{${string}}`;
860
965
 
861
966
  /**
862
967
  * @SINCE 1.13.0
@@ -865,7 +970,8 @@ declare namespace sap {
865
970
  */
866
971
  showSortMenuEntry?:
867
972
  | boolean
868
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
973
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
974
+ | `{${string}}`;
869
975
 
870
976
  /**
871
977
  * If this property is set, a span is applied for the header. When moving columns, all columns which are
@@ -875,7 +981,10 @@ declare namespace sap {
875
981
  * Only columns with a span equal to 1 can have a column menu. When setting a column to fixed, all columns
876
982
  * which are part of the header with the greatest span will be set to fixed.
877
983
  */
878
- headerSpan?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
984
+ headerSpan?:
985
+ | any
986
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
987
+ | `{${string}}`;
879
988
 
880
989
  /**
881
990
  * @SINCE 1.21.1
@@ -886,7 +995,10 @@ declare namespace sap {
886
995
  * sap.m.Input, sap.ui.commons.TextView, sap.ui.commons.Label, sap.ui.commons.Link and sap.ui.commons.TextField,
887
996
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
888
997
  */
889
- autoResizable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
998
+ autoResizable?:
999
+ | boolean
1000
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1001
+ | `{${string}}`;
890
1002
 
891
1003
  /**
892
1004
  * Label of the column which is displayed in the column header. This aggregation is for the standard behavior,
@@ -907,7 +1019,8 @@ declare namespace sap {
907
1019
  multiLabels?:
908
1020
  | sap.ui.core.Control[]
909
1021
  | sap.ui.core.Control
910
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1022
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1023
+ | `{${string}}`;
911
1024
 
912
1025
  /**
913
1026
  * Template (cell renderer) of this column. A template is decoupled from the column. Each time the template's
@@ -953,14 +1066,18 @@ declare namespace sap {
953
1066
  cells?:
954
1067
  | sap.ui.core.Control[]
955
1068
  | sap.ui.core.Control
956
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1069
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1070
+ | `{${string}}`;
957
1071
  }
958
1072
 
959
1073
  interface $RowActionSettings extends sap.ui.core.$ControlSettings {
960
1074
  /**
961
1075
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
962
1076
  */
963
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1077
+ visible?:
1078
+ | boolean
1079
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1080
+ | `{${string}}`;
964
1081
 
965
1082
  /**
966
1083
  * The action items which should be displayed.
@@ -968,19 +1085,26 @@ declare namespace sap {
968
1085
  items?:
969
1086
  | sap.ui.table.RowActionItem[]
970
1087
  | sap.ui.table.RowActionItem
971
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1088
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1089
+ | `{${string}}`;
972
1090
  }
973
1091
 
974
1092
  interface $RowActionItemSettings extends sap.ui.core.$ElementSettings {
975
1093
  /**
976
1094
  * The icon of the item.
977
1095
  */
978
- icon?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
1096
+ icon?:
1097
+ | sap.ui.core.URI
1098
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1099
+ | `{${string}}`;
979
1100
 
980
1101
  /**
981
1102
  * Whether the item should be visible on the screen.
982
1103
  */
983
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1104
+ visible?:
1105
+ | boolean
1106
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1107
+ | `{${string}}`;
984
1108
 
985
1109
  /**
986
1110
  * The text of the item. It is used as tooltip and for accessibility purposes.
@@ -993,7 +1117,8 @@ declare namespace sap {
993
1117
  */
994
1118
  type?:
995
1119
  | sap.ui.table.RowActionType
996
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1120
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1121
+ | `{${string}}`;
997
1122
 
998
1123
  /**
999
1124
  * The `press` is fired when the user triggers the corresponding action.
@@ -1036,7 +1161,10 @@ declare namespace sap {
1036
1161
  * If set to `true`, a navigation indicator is displayed at the end of the row. **Note:** This property
1037
1162
  * must be set for **one** row only.
1038
1163
  */
1039
- navigated?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1164
+ navigated?:
1165
+ | boolean
1166
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1167
+ | `{${string}}`;
1040
1168
  }
1041
1169
 
1042
1170
  interface $TableSettings extends sap.ui.core.$ControlSettings {
@@ -1045,7 +1173,8 @@ declare namespace sap {
1045
1173
  */
1046
1174
  width?:
1047
1175
  | sap.ui.core.CSSSize
1048
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1176
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1177
+ | `{${string}}`;
1049
1178
 
1050
1179
  /**
1051
1180
  * Row height in pixel.
@@ -1062,7 +1191,10 @@ declare namespace sap {
1062
1191
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
1063
1192
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
1064
1193
  */
1065
- rowHeight?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1194
+ rowHeight?:
1195
+ | int
1196
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1197
+ | `{${string}}`;
1066
1198
 
1067
1199
  /**
1068
1200
  * Header row height in pixel. If a value greater than 0 is set, it overrides the height defined in the
@@ -1075,7 +1207,8 @@ declare namespace sap {
1075
1207
  */
1076
1208
  columnHeaderHeight?:
1077
1209
  | int
1078
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1210
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1211
+ | `{${string}}`;
1079
1212
 
1080
1213
  /**
1081
1214
  * Flag whether the column header is visible or not.
@@ -1085,17 +1218,24 @@ declare namespace sap {
1085
1218
  */
1086
1219
  columnHeaderVisible?:
1087
1220
  | boolean
1088
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1221
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1222
+ | `{${string}}`;
1089
1223
 
1090
1224
  /**
1091
1225
  * Number of visible rows of the table.
1092
1226
  */
1093
- visibleRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1227
+ visibleRowCount?:
1228
+ | int
1229
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1230
+ | `{${string}}`;
1094
1231
 
1095
1232
  /**
1096
1233
  * First visible row.
1097
1234
  */
1098
- firstVisibleRow?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1235
+ firstVisibleRow?:
1236
+ | int
1237
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1238
+ | `{${string}}`;
1099
1239
 
1100
1240
  /**
1101
1241
  * Selection mode of the Table. This property controls whether single or multiple rows can be selected and
@@ -1107,7 +1247,8 @@ declare namespace sap {
1107
1247
  */
1108
1248
  selectionMode?:
1109
1249
  | sap.ui.table.SelectionMode
1110
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1250
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1251
+ | `{${string}}`;
1111
1252
 
1112
1253
  /**
1113
1254
  * Selection behavior of the Table. This property defines whether the row selector is displayed and whether
@@ -1117,7 +1258,8 @@ declare namespace sap {
1117
1258
  */
1118
1259
  selectionBehavior?:
1119
1260
  | sap.ui.table.SelectionBehavior
1120
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1261
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1262
+ | `{${string}}`;
1121
1263
 
1122
1264
  /**
1123
1265
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices} and {@link sap.ui.table.Table#setSelectedIndex}
@@ -1128,13 +1270,19 @@ declare namespace sap {
1128
1270
  * invalid, the call is ignored. **Note:** If the rows of the table are bound, the value of the property
1129
1271
  * is reset to -1. If a selection plugin is applied to the table, the property is not bindable.
1130
1272
  */
1131
- selectedIndex?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1273
+ selectedIndex?:
1274
+ | int
1275
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1276
+ | `{${string}}`;
1132
1277
 
1133
1278
  /**
1134
1279
  * Flag whether the controls of the Table are editable or not (currently this only controls the background
1135
1280
  * color in certain themes!)
1136
1281
  */
1137
- editable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1282
+ editable?:
1283
+ | boolean
1284
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1285
+ | `{${string}}`;
1138
1286
 
1139
1287
  /**
1140
1288
  * @deprecated (since 1.38)
@@ -1144,23 +1292,28 @@ declare namespace sap {
1144
1292
  */
1145
1293
  navigationMode?:
1146
1294
  | sap.ui.table.NavigationMode
1147
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1295
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1296
+ | `{${string}}`;
1148
1297
 
1149
1298
  /**
1150
- * The `threshold` defines how many additional (not yet visible records) shall be pre-fetched to enable
1151
- * smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount` is
1152
- * 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
1153
- * is lower than the `visibleRowCount`, the `visibleRowCount` will be used as the `threshold`. If the value
1154
- * is 0 then the thresholding is disabled.
1299
+ * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
1300
+ * enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
1301
+ * is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
1302
+ * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
1303
+ * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
1155
1304
  */
1156
- threshold?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1305
+ threshold?:
1306
+ | int
1307
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1308
+ | `{${string}}`;
1157
1309
 
1158
1310
  /**
1159
1311
  * Flag to enable or disable column reordering
1160
1312
  */
1161
1313
  enableColumnReordering?:
1162
1314
  | boolean
1163
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1315
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1316
+ | `{${string}}`;
1164
1317
 
1165
1318
  /**
1166
1319
  * @EXPERIMENTAL (since 1.28)
@@ -1183,7 +1336,8 @@ declare namespace sap {
1183
1336
  */
1184
1337
  enableGrouping?:
1185
1338
  | boolean
1186
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1339
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1340
+ | `{${string}}`;
1187
1341
 
1188
1342
  /**
1189
1343
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
@@ -1191,13 +1345,17 @@ declare namespace sap {
1191
1345
  */
1192
1346
  showColumnVisibilityMenu?:
1193
1347
  | boolean
1194
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1348
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1349
+ | `{${string}}`;
1195
1350
 
1196
1351
  /**
1197
1352
  * Flag whether to show the no data overlay or not once the table is empty. If set to false the table will
1198
1353
  * just show a grid of empty cells
1199
1354
  */
1200
- showNoData?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1355
+ showNoData?:
1356
+ | boolean
1357
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1358
+ | `{${string}}`;
1201
1359
 
1202
1360
  /**
1203
1361
  * @SINCE 1.9.2
@@ -1220,13 +1378,17 @@ declare namespace sap {
1220
1378
  */
1221
1379
  visibleRowCountMode?:
1222
1380
  | sap.ui.table.VisibleRowCountMode
1223
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1381
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1382
+ | `{${string}}`;
1224
1383
 
1225
1384
  /**
1226
1385
  * This property is used to set the minimum count of visible rows when the property visibleRowCountMode
1227
1386
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
1228
1387
  */
1229
- minAutoRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1388
+ minAutoRowCount?:
1389
+ | int
1390
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1391
+ | `{${string}}`;
1230
1392
 
1231
1393
  /**
1232
1394
  * Number of columns that are fixed on the left. Only columns which are not fixed can be scrolled horizontally.
@@ -1237,7 +1399,10 @@ declare namespace sap {
1237
1399
  * the value of the property and adapts the behavior in an appropriate way to ensure that the user is still
1238
1400
  * able to scroll horizontally.
1239
1401
  */
1240
- fixedColumnCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1402
+ fixedColumnCount?:
1403
+ | int
1404
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1405
+ | `{${string}}`;
1241
1406
 
1242
1407
  /**
1243
1408
  * Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
@@ -1246,7 +1411,10 @@ declare namespace sap {
1246
1411
  * This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel
1247
1412
  * client model}.
1248
1413
  */
1249
- fixedRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1414
+ fixedRowCount?:
1415
+ | int
1416
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1417
+ | `{${string}}`;
1250
1418
 
1251
1419
  /**
1252
1420
  * @SINCE 1.18.7
@@ -1259,7 +1427,8 @@ declare namespace sap {
1259
1427
  */
1260
1428
  fixedBottomRowCount?:
1261
1429
  | int
1262
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1430
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1431
+ | `{${string}}`;
1263
1432
 
1264
1433
  /**
1265
1434
  * @SINCE 1.21.0
@@ -1268,7 +1437,8 @@ declare namespace sap {
1268
1437
  */
1269
1438
  enableColumnFreeze?:
1270
1439
  | boolean
1271
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1440
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1441
+ | `{${string}}`;
1272
1442
 
1273
1443
  /**
1274
1444
  * @SINCE 1.21.0
@@ -1277,7 +1447,8 @@ declare namespace sap {
1277
1447
  */
1278
1448
  enableCellFilter?:
1279
1449
  | boolean
1280
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1450
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1451
+ | `{${string}}`;
1281
1452
 
1282
1453
  /**
1283
1454
  * @SINCE 1.21.2
@@ -1285,7 +1456,10 @@ declare namespace sap {
1285
1456
  * Setting this property to true will show an overlay on top of the Table content and users cannot click
1286
1457
  * anymore on the Table content.
1287
1458
  */
1288
- showOverlay?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1459
+ showOverlay?:
1460
+ | boolean
1461
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1462
+ | `{${string}}`;
1289
1463
 
1290
1464
  /**
1291
1465
  * @SINCE 1.23.0
@@ -1295,7 +1469,8 @@ declare namespace sap {
1295
1469
  */
1296
1470
  enableSelectAll?:
1297
1471
  | boolean
1298
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1472
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1473
+ | `{${string}}`;
1299
1474
 
1300
1475
  /**
1301
1476
  * @SINCE 1.23.0
@@ -1305,7 +1480,8 @@ declare namespace sap {
1305
1480
  */
1306
1481
  enableCustomFilter?:
1307
1482
  | boolean
1308
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1483
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1484
+ | `{${string}}`;
1309
1485
 
1310
1486
  /**
1311
1487
  * @SINCE 1.27.0
@@ -1318,7 +1494,8 @@ declare namespace sap {
1318
1494
  */
1319
1495
  enableBusyIndicator?:
1320
1496
  | boolean
1321
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1497
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1498
+ | `{${string}}`;
1322
1499
 
1323
1500
  /**
1324
1501
  * @SINCE 1.45.0
@@ -1326,7 +1503,10 @@ declare namespace sap {
1326
1503
  * Number of row actions made visible which determines the width of the row action column. The values `0`,
1327
1504
  * `1` and `2` are possible.
1328
1505
  */
1329
- rowActionCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1506
+ rowActionCount?:
1507
+ | int
1508
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1509
+ | `{${string}}`;
1330
1510
 
1331
1511
  /**
1332
1512
  * @SINCE 1.52
@@ -1335,7 +1515,8 @@ declare namespace sap {
1335
1515
  */
1336
1516
  alternateRowColors?:
1337
1517
  | boolean
1338
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1518
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1519
+ | `{${string}}`;
1339
1520
 
1340
1521
  /**
1341
1522
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
@@ -1370,7 +1551,8 @@ declare namespace sap {
1370
1551
  extension?:
1371
1552
  | sap.ui.core.Control[]
1372
1553
  | sap.ui.core.Control
1373
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1554
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1555
+ | `{${string}}`;
1374
1556
 
1375
1557
  /**
1376
1558
  * Columns of the Table
@@ -1378,7 +1560,8 @@ declare namespace sap {
1378
1560
  columns?:
1379
1561
  | sap.ui.table.Column[]
1380
1562
  | sap.ui.table.Column
1381
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1563
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1564
+ | `{${string}}`;
1382
1565
 
1383
1566
  /**
1384
1567
  * This aggregation is managed by the table itself. It can only be used with data binding, is read-only,
@@ -1399,7 +1582,8 @@ declare namespace sap {
1399
1582
  rows?:
1400
1583
  | sap.ui.table.Row[]
1401
1584
  | sap.ui.table.Row
1402
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1585
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1586
+ | `{${string}}`;
1403
1587
 
1404
1588
  /**
1405
1589
  * The value for the noData aggregation can be either a string value or a control instance. The control
@@ -1452,7 +1636,8 @@ declare namespace sap {
1452
1636
  plugins?:
1453
1637
  | sap.ui.table.plugins.SelectionPlugin[]
1454
1638
  | sap.ui.table.plugins.SelectionPlugin
1455
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1639
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1640
+ | `{${string}}`;
1456
1641
 
1457
1642
  /**
1458
1643
  * @EXPERIMENTAL (since 1.28)
@@ -1587,7 +1772,10 @@ declare namespace sap {
1587
1772
  /**
1588
1773
  * Auto save state
1589
1774
  */
1590
- autoSave?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1775
+ autoSave?:
1776
+ | boolean
1777
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1778
+ | `{${string}}`;
1591
1779
 
1592
1780
  /**
1593
1781
  * Personalization Service object. Needs to have the following methods:
@@ -1595,7 +1783,10 @@ declare namespace sap {
1595
1783
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
1596
1784
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
1597
1785
  */
1598
- persoService?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
1786
+ persoService?:
1787
+ | any
1788
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1789
+ | `{${string}}`;
1599
1790
 
1600
1791
  /**
1601
1792
  * By defining a custom data key the `TablePersoController` will try to get the key for saving the perso
@@ -1607,7 +1798,10 @@ declare namespace sap {
1607
1798
  /**
1608
1799
  * Controls the visibility of the Reset button of the `TablePersoDialog`.
1609
1800
  */
1610
- showResetAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1801
+ showResetAll?:
1802
+ | boolean
1803
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1804
+ | `{${string}}`;
1611
1805
 
1612
1806
  /**
1613
1807
  * Controls the behavior of the Reset button of the `TablePersoDialog`.
@@ -1620,7 +1814,8 @@ declare namespace sap {
1620
1814
  */
1621
1815
  resetAllMode?:
1622
1816
  | sap.ui.table.ResetAllMode
1623
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1817
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1818
+ | `{${string}}`;
1624
1819
 
1625
1820
  /**
1626
1821
  * The target table of this controller.
@@ -1651,13 +1846,17 @@ declare namespace sap {
1651
1846
  */
1652
1847
  expandFirstLevel?:
1653
1848
  | boolean
1654
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1849
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1850
+ | `{${string}}`;
1655
1851
 
1656
1852
  /**
1657
1853
  * If group mode is enabled nodes with subitems are rendered as if they were group headers. This can be
1658
1854
  * used to do the grouping for an OData service on the backend and visualize this in a table.
1659
1855
  */
1660
- useGroupMode?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1856
+ useGroupMode?:
1857
+ | boolean
1858
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1859
+ | `{${string}}`;
1661
1860
 
1662
1861
  /**
1663
1862
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
@@ -1688,7 +1887,8 @@ declare namespace sap {
1688
1887
  */
1689
1888
  collapseRecursive?:
1690
1889
  | boolean
1691
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1890
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1891
+ | `{${string}}`;
1692
1892
 
1693
1893
  /**
1694
1894
  * @deprecated (since 1.76) - replaced by the `rootLevel` binding parameter
@@ -1709,7 +1909,10 @@ declare namespace sap {
1709
1909
  * });
1710
1910
  * ```
1711
1911
  */
1712
- rootLevel?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1912
+ rootLevel?:
1913
+ | int
1914
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1915
+ | `{${string}}`;
1713
1916
 
1714
1917
  /**
1715
1918
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
@@ -1760,6 +1963,8 @@ declare namespace sap {
1760
1963
  * with the information contained in `oClassInfo`.
1761
1964
  *
1762
1965
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Column.extend}.
1966
+ *
1967
+ * @returns Created class / constructor function
1763
1968
  */
1764
1969
  static extend<T extends Record<string, unknown>>(
1765
1970
  /**
@@ -1778,12 +1983,16 @@ declare namespace sap {
1778
1983
  ): Function;
1779
1984
  /**
1780
1985
  * Returns a metadata object for class sap.ui.table.AnalyticalColumn.
1986
+ *
1987
+ * @returns Metadata object describing this class
1781
1988
  */
1782
1989
  static getMetadata(): sap.ui.core.ElementMetadata;
1783
1990
  /**
1784
1991
  * Gets current value of property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
1785
1992
  *
1786
1993
  * If the column is grouped, this formatter is used to format the value in the group header
1994
+ *
1995
+ * @returns Value of property `groupHeaderFormatter`
1787
1996
  */
1788
1997
  getGroupHeaderFormatter(): any;
1789
1998
  /**
@@ -1793,6 +2002,8 @@ declare namespace sap {
1793
2002
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
1794
2003
  *
1795
2004
  * Default value is `false`.
2005
+ *
2006
+ * @returns Value of property `inResult`
1796
2007
  */
1797
2008
  getInResult(): boolean;
1798
2009
  /**
@@ -1800,6 +2011,8 @@ declare namespace sap {
1800
2011
  *
1801
2012
  * Defines the primary model property which is used inside the Column. In case of the analytical extension
1802
2013
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
2014
+ *
2015
+ * @returns Value of property `leadingProperty`
1803
2016
  */
1804
2017
  getLeadingProperty(): string;
1805
2018
  /**
@@ -1809,6 +2022,8 @@ declare namespace sap {
1809
2022
  * has the same value for every rows within the group.
1810
2023
  *
1811
2024
  * Default value is `false`.
2025
+ *
2026
+ * @returns Value of property `showIfGrouped`
1812
2027
  */
1813
2028
  getShowIfGrouped(): boolean;
1814
2029
  /**
@@ -1817,24 +2032,18 @@ declare namespace sap {
1817
2032
  * If defined a sum for this column is calculated
1818
2033
  *
1819
2034
  * Default value is `false`.
1820
- */
1821
- getSummed(): boolean;
1822
- /**
1823
- * Returns the information whether the column is groupable.
1824
2035
  *
1825
- * The column is groupable only if the following conditions are fulfilled:
1826
- * - The column must be child of an `AnalyticalTable`.
1827
- * - The `rows` aggregation of the table must be bound.
1828
- * - The metadata of the model must be loaded.
1829
- * - The column's `leadingProperty` must be a sortable and filterable dimension.
2036
+ * @returns Value of property `summed`
1830
2037
  */
1831
- isGroupable(): boolean;
2038
+ getSummed(): boolean;
1832
2039
  /**
1833
2040
  * Sets a new value for property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
1834
2041
  *
1835
2042
  * If the column is grouped, this formatter is used to format the value in the group header
1836
2043
  *
1837
2044
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2045
+ *
2046
+ * @returns Reference to `this` in order to allow method chaining
1838
2047
  */
1839
2048
  setGroupHeaderFormatter(
1840
2049
  /**
@@ -1851,6 +2060,8 @@ declare namespace sap {
1851
2060
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1852
2061
  *
1853
2062
  * Default value is `false`.
2063
+ *
2064
+ * @returns Reference to `this` in order to allow method chaining
1854
2065
  */
1855
2066
  setInResult(
1856
2067
  /**
@@ -1865,6 +2076,8 @@ declare namespace sap {
1865
2076
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
1866
2077
  *
1867
2078
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2079
+ *
2080
+ * @returns Reference to `this` in order to allow method chaining
1868
2081
  */
1869
2082
  setLeadingProperty(
1870
2083
  /**
@@ -1881,6 +2094,8 @@ declare namespace sap {
1881
2094
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1882
2095
  *
1883
2096
  * Default value is `false`.
2097
+ *
2098
+ * @returns Reference to `this` in order to allow method chaining
1884
2099
  */
1885
2100
  setShowIfGrouped(
1886
2101
  /**
@@ -1896,6 +2111,8 @@ declare namespace sap {
1896
2111
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1897
2112
  *
1898
2113
  * Default value is `false`.
2114
+ *
2115
+ * @returns Reference to `this` in order to allow method chaining
1899
2116
  */
1900
2117
  setSummed(
1901
2118
  /**
@@ -1952,6 +2169,8 @@ declare namespace sap {
1952
2169
  * it with the information contained in `oClassInfo`.
1953
2170
  *
1954
2171
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.ColumnMenu.extend}.
2172
+ *
2173
+ * @returns Created class / constructor function
1955
2174
  */
1956
2175
  static extend<T extends Record<string, unknown>>(
1957
2176
  /**
@@ -1970,6 +2189,8 @@ declare namespace sap {
1970
2189
  ): Function;
1971
2190
  /**
1972
2191
  * Returns a metadata object for class sap.ui.table.AnalyticalColumnMenu.
2192
+ *
2193
+ * @returns Metadata object describing this class
1973
2194
  */
1974
2195
  static getMetadata(): sap.ui.core.ElementMetadata;
1975
2196
  }
@@ -2023,6 +2244,8 @@ declare namespace sap {
2023
2244
  * the information contained in `oClassInfo`.
2024
2245
  *
2025
2246
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
2247
+ *
2248
+ * @returns Created class / constructor function
2026
2249
  */
2027
2250
  static extend<T extends Record<string, unknown>>(
2028
2251
  /**
@@ -2041,6 +2264,8 @@ declare namespace sap {
2041
2264
  ): Function;
2042
2265
  /**
2043
2266
  * Returns a metadata object for class sap.ui.table.AnalyticalTable.
2267
+ *
2268
+ * @returns Metadata object describing this class
2044
2269
  */
2045
2270
  static getMetadata(): sap.ui.core.ElementMetadata;
2046
2271
  /**
@@ -2051,6 +2276,8 @@ declare namespace sap {
2051
2276
  *
2052
2277
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
2053
2278
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
2279
+ *
2280
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2054
2281
  */
2055
2282
  addSelectionInterval(
2056
2283
  /**
@@ -2064,6 +2291,8 @@ declare namespace sap {
2064
2291
  ): this;
2065
2292
  /**
2066
2293
  * Collapses one or more rows.
2294
+ *
2295
+ * @returns Reference to `this` in order to allow method chaining
2067
2296
  */
2068
2297
  collapse(
2069
2298
  /**
@@ -2073,10 +2302,14 @@ declare namespace sap {
2073
2302
  ): this;
2074
2303
  /**
2075
2304
  * Collapses all nodes (and their child nodes if collapseRecursive is activated).
2305
+ *
2306
+ * @returns Reference to `this` in order to allow method chaining
2076
2307
  */
2077
2308
  collapseAll(): this;
2078
2309
  /**
2079
2310
  * Expands one or more rows.
2311
+ *
2312
+ * @returns Reference to `this` in order to allow method chaining
2080
2313
  */
2081
2314
  expand(
2082
2315
  /**
@@ -2090,6 +2323,8 @@ declare namespace sap {
2090
2323
  * Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
2091
2324
  * is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
2092
2325
  * groups are loaded, which increases the scroll range, and the scroll thumb moves up.
2326
+ *
2327
+ * @returns Reference to `this` in order to allow method chaining
2093
2328
  */
2094
2329
  expandAll(): this;
2095
2330
  /**
@@ -2117,6 +2352,8 @@ declare namespace sap {
2117
2352
  *
2118
2353
  *
2119
2354
  * Default value is `"Bundled"`.
2355
+ *
2356
+ * @returns Value of property `autoExpandMode`
2120
2357
  */
2121
2358
  getAutoExpandMode(): string;
2122
2359
  /**
@@ -2143,6 +2380,8 @@ declare namespace sap {
2143
2380
  *
2144
2381
  *
2145
2382
  * Default value is `true`.
2383
+ *
2384
+ * @returns Value of property `collapseRecursive`
2146
2385
  */
2147
2386
  getCollapseRecursive(): boolean;
2148
2387
  /**
@@ -2150,10 +2389,14 @@ declare namespace sap {
2150
2389
  *
2151
2390
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
2152
2391
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
2392
+ *
2393
+ * @returns Value of property `columnVisibilityMenuSorter`
2153
2394
  */
2154
2395
  getColumnVisibilityMenuSorter(): any;
2155
2396
  /**
2156
2397
  * Returns the context of a row by its index.
2398
+ *
2399
+ * @returns The context of a row by its index
2157
2400
  */
2158
2401
  getContextByIndex(
2159
2402
  /**
@@ -2167,6 +2410,8 @@ declare namespace sap {
2167
2410
  * Gets current value of property {@link #getDirty dirty}.
2168
2411
  *
2169
2412
  * If dirty the content of the Table will be overlayed.
2413
+ *
2414
+ * @returns Value of property `dirty`
2170
2415
  */
2171
2416
  getDirty(): boolean;
2172
2417
  /**
@@ -2205,6 +2450,8 @@ declare namespace sap {
2205
2450
  *
2206
2451
  *
2207
2452
  * Default value is `0`.
2453
+ *
2454
+ * @returns Value of property `numberOfExpandedLevels`
2208
2455
  */
2209
2456
  getNumberOfExpandedLevels(): int;
2210
2457
  /**
@@ -2212,6 +2459,8 @@ declare namespace sap {
2212
2459
  *
2213
2460
  * The lead selection index is, among other things, used to determine the start/end of a selection range,
2214
2461
  * when using Shift-Click to select multiple entries at once.
2462
+ *
2463
+ * @returns Current lead selection index.
2215
2464
  */
2216
2465
  getSelectedIndex(): int;
2217
2466
  /**
@@ -2220,6 +2469,8 @@ declare namespace sap {
2220
2469
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
2221
2470
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
2222
2471
  * yet loaded" to the client), will not be returned.
2472
+ *
2473
+ * @returns an array containing all selected indices
2223
2474
  */
2224
2475
  getSelectedIndices(): int[];
2225
2476
  /**
@@ -2247,14 +2498,20 @@ declare namespace sap {
2247
2498
  *
2248
2499
  *
2249
2500
  * Default value is `false`.
2501
+ *
2502
+ * @returns Value of property `sumOnTop`
2250
2503
  */
2251
2504
  getSumOnTop(): boolean;
2252
2505
  /**
2253
2506
  * Returns the total size of the data entries.
2507
+ *
2508
+ * @returns The total size of the data entries
2254
2509
  */
2255
2510
  getTotalSize(): int;
2256
2511
  /**
2257
2512
  * Checks whether the row is expanded or collapsed.
2513
+ *
2514
+ * @returns `true` if the row is expanded, `false` if it is collapsed
2258
2515
  */
2259
2516
  isExpanded(
2260
2517
  /**
@@ -2264,6 +2521,8 @@ declare namespace sap {
2264
2521
  ): boolean;
2265
2522
  /**
2266
2523
  * Checks if the row at the given index is selected.
2524
+ *
2525
+ * @returns true if the index is selected, false otherwise
2267
2526
  */
2268
2527
  isIndexSelected(
2269
2528
  /**
@@ -2276,6 +2535,8 @@ declare namespace sap {
2276
2535
  * with their absolute row index. Please be aware that the absolute row index only applies to the tree which
2277
2536
  * is visualized by the `AnalyticalTable` control. Invisible nodes (collapsed child nodes) will not be taken
2278
2537
  * into account.
2538
+ *
2539
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2279
2540
  */
2280
2541
  removeSelectionInterval(
2281
2542
  /**
@@ -2307,6 +2568,8 @@ declare namespace sap {
2307
2568
  * on the client are selected. In addition all subsequent rows/tree nodes, which will be paged into view
2308
2569
  * are also immediately selected. However, due to obvious performance/network traffic reasons, the SelectAll
2309
2570
  * function will NOT retrieve any data from the backend.
2571
+ *
2572
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2310
2573
  */
2311
2574
  selectAll(): this;
2312
2575
  /**
@@ -2336,6 +2599,8 @@ declare namespace sap {
2336
2599
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2337
2600
  *
2338
2601
  * Default value is `"Bundled"`.
2602
+ *
2603
+ * @returns Reference to `this` in order to allow method chaining
2339
2604
  */
2340
2605
  setAutoExpandMode(
2341
2606
  /**
@@ -2369,6 +2634,8 @@ declare namespace sap {
2369
2634
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2370
2635
  *
2371
2636
  * Default value is `true`.
2637
+ *
2638
+ * @returns Reference to `this` in order to allow method chaining
2372
2639
  */
2373
2640
  setCollapseRecursive(
2374
2641
  /**
@@ -2383,6 +2650,8 @@ declare namespace sap {
2383
2650
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
2384
2651
  *
2385
2652
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2653
+ *
2654
+ * @returns Reference to `this` in order to allow method chaining
2386
2655
  */
2387
2656
  setColumnVisibilityMenuSorter(
2388
2657
  /**
@@ -2398,6 +2667,8 @@ declare namespace sap {
2398
2667
  * If dirty the content of the Table will be overlayed.
2399
2668
  *
2400
2669
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2670
+ *
2671
+ * @returns Reference to `this` in order to allow method chaining
2401
2672
  */
2402
2673
  setDirty(
2403
2674
  /**
@@ -2409,12 +2680,16 @@ declare namespace sap {
2409
2680
  * @deprecated (since 1.28)
2410
2681
  *
2411
2682
  * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
2683
+ *
2684
+ * @returns Reference to `this` in order to allow method chaining
2412
2685
  */
2413
2686
  setEnableGrouping(bValue: boolean): this;
2414
2687
  /**
2415
2688
  * @deprecated (since 1.28)
2416
2689
  *
2417
2690
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
2691
+ *
2692
+ * @returns Reference to `this` in order to allow method chaining
2418
2693
  */
2419
2694
  setGroupBy(oGroupBy: sap.ui.core.ID | sap.ui.table.Column): this;
2420
2695
  /**
@@ -2443,6 +2718,8 @@ declare namespace sap {
2443
2718
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2444
2719
  *
2445
2720
  * Default value is `0`.
2721
+ *
2722
+ * @returns Reference to `this` in order to allow method chaining
2446
2723
  */
2447
2724
  setNumberOfExpandedLevels(
2448
2725
  /**
@@ -2454,6 +2731,8 @@ declare namespace sap {
2454
2731
  * In an `AnalyticalTable` control you can only select indices, which correspond to the currently visualized
2455
2732
  * tree. Invisible nodes (e.g. collapsed child nodes) cannot be selected via Index, because they do not
2456
2733
  * correspond to an `AnalyticalTable` row.
2734
+ *
2735
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2457
2736
  */
2458
2737
  setSelectedIndex(
2459
2738
  /**
@@ -2466,6 +2745,8 @@ declare namespace sap {
2466
2745
  *
2467
2746
  * **Note:** The previous selection will be lost/overridden. If this is not the required behavior, please
2468
2747
  * use `addSelectionInterval` and `removeSelectionInterval`.
2748
+ *
2749
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2469
2750
  */
2470
2751
  setSelectionInterval(
2471
2752
  /**
@@ -2504,6 +2785,8 @@ declare namespace sap {
2504
2785
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2505
2786
  *
2506
2787
  * Default value is `false`.
2788
+ *
2789
+ * @returns Reference to `this` in order to allow method chaining
2507
2790
  */
2508
2791
  setSumOnTop(
2509
2792
  /**
@@ -2558,6 +2841,8 @@ declare namespace sap {
2558
2841
  * contained in `oClassInfo`.
2559
2842
  *
2560
2843
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2844
+ *
2845
+ * @returns Created class / constructor function
2561
2846
  */
2562
2847
  static extend<T extends Record<string, unknown>>(
2563
2848
  /**
@@ -2576,12 +2861,16 @@ declare namespace sap {
2576
2861
  ): Function;
2577
2862
  /**
2578
2863
  * Returns a metadata object for class sap.ui.table.Column.
2864
+ *
2865
+ * @returns Metadata object describing this class
2579
2866
  */
2580
2867
  static getMetadata(): sap.ui.core.ElementMetadata;
2581
2868
  /**
2582
2869
  * @SINCE 1.13.1
2583
2870
  *
2584
2871
  * Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
2872
+ *
2873
+ * @returns Reference to `this` in order to allow method chaining
2585
2874
  */
2586
2875
  addMultiLabel(
2587
2876
  /**
@@ -2599,6 +2888,8 @@ declare namespace sap {
2599
2888
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
2600
2889
  *
2601
2890
  * Fires before the column menu is opened.
2891
+ *
2892
+ * @returns Reference to `this` in order to allow method chaining
2602
2893
  */
2603
2894
  attachColumnMenuOpen(
2604
2895
  /**
@@ -2625,6 +2916,8 @@ declare namespace sap {
2625
2916
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
2626
2917
  *
2627
2918
  * Fires before the column menu is opened.
2919
+ *
2920
+ * @returns Reference to `this` in order to allow method chaining
2628
2921
  */
2629
2922
  attachColumnMenuOpen(
2630
2923
  /**
@@ -2638,20 +2931,28 @@ declare namespace sap {
2638
2931
  ): this;
2639
2932
  /**
2640
2933
  * Destroys the label in the aggregation {@link #getLabel label}.
2934
+ *
2935
+ * @returns Reference to `this` in order to allow method chaining
2641
2936
  */
2642
2937
  destroyLabel(): this;
2643
2938
  /**
2644
2939
  * Destroys the menu in the aggregation {@link #getMenu menu}.
2940
+ *
2941
+ * @returns Reference to `this` in order to allow method chaining
2645
2942
  */
2646
2943
  destroyMenu(): this;
2647
2944
  /**
2648
2945
  * @SINCE 1.13.1
2649
2946
  *
2650
2947
  * Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
2948
+ *
2949
+ * @returns Reference to `this` in order to allow method chaining
2651
2950
  */
2652
2951
  destroyMultiLabels(): this;
2653
2952
  /**
2654
2953
  * Destroys the template in the aggregation {@link #getTemplate template}.
2954
+ *
2955
+ * @returns Reference to `this` in order to allow method chaining
2655
2956
  */
2656
2957
  destroyTemplate(): this;
2657
2958
  /**
@@ -2661,6 +2962,8 @@ declare namespace sap {
2661
2962
  * `sap.ui.table.Column`.
2662
2963
  *
2663
2964
  * The passed function and listener object must match the ones used for event registration.
2965
+ *
2966
+ * @returns Reference to `this` in order to allow method chaining
2664
2967
  */
2665
2968
  detachColumnMenuOpen(
2666
2969
  /**
@@ -2679,6 +2982,8 @@ declare namespace sap {
2679
2982
  *
2680
2983
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
2681
2984
  * event object. The return value of this method indicates whether the default action should be executed.
2985
+ *
2986
+ * @returns Whether or not to prevent the default action
2682
2987
  */
2683
2988
  fireColumnMenuOpen(
2684
2989
  /**
@@ -2703,20 +3008,17 @@ declare namespace sap {
2703
3008
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
2704
3009
  *
2705
3010
  * Default value is `false`.
2706
- */
2707
- getAutoResizable(): boolean;
2708
- /**
2709
- * @SINCE 1.98.0
2710
3011
  *
2711
- * Returns the `sap.ui.core.IColumnHeaderMenu<\code>, which is the current target of the association columnHeaderMenu`,
2712
- * or null.
3012
+ * @returns Value of property `autoResizable`
2713
3013
  */
2714
- getColumnHeaderMenu(): sap.ui.core.IColumnHeaderMenu;
3014
+ getAutoResizable(): boolean;
2715
3015
  /**
2716
3016
  * Gets current value of property {@link #getDefaultFilterOperator defaultFilterOperator}.
2717
3017
  *
2718
3018
  * If this property is set, the default filter operator of the column is overridden. By default `Contains`
2719
3019
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
3020
+ *
3021
+ * @returns Value of property `defaultFilterOperator`
2720
3022
  */
2721
3023
  getDefaultFilterOperator(): string;
2722
3024
  /**
@@ -2727,12 +3029,16 @@ declare namespace sap {
2727
3029
  * sap.ui.table.Table#filter}.
2728
3030
  *
2729
3031
  * Default value is `false`.
3032
+ *
3033
+ * @returns Value of property `filtered`
2730
3034
  */
2731
3035
  getFiltered(): boolean;
2732
3036
  /**
2733
3037
  * Gets current value of property {@link #getFilterOperator filterOperator}.
2734
3038
  *
2735
3039
  * Filter operator to use when filtering this column.
3040
+ *
3041
+ * @returns Value of property `filterOperator`
2736
3042
  */
2737
3043
  getFilterOperator(): string;
2738
3044
  /**
@@ -2745,6 +3051,8 @@ declare namespace sap {
2745
3051
  *
2746
3052
  * A column menu entry for filtering can only be generated if the `filterProperty` is set. The default menu
2747
3053
  * entry is a text input field.
3054
+ *
3055
+ * @returns Value of property `filterProperty`
2748
3056
  */
2749
3057
  getFilterProperty(): string;
2750
3058
  /**
@@ -2759,6 +3067,8 @@ declare namespace sap {
2759
3067
  * \{\} \}"`. Here the escaping is mandatory to avoid handling by the binding parser. As an alternative,
2760
3068
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
2761
3069
  * #setFilterType} instead.
3070
+ *
3071
+ * @returns Value of property `filterType`
2762
3072
  */
2763
3073
  getFilterType(): any;
2764
3074
  /**
@@ -2780,6 +3090,9 @@ declare namespace sap {
2780
3090
  * some..thing between
2781
3091
  * 50..100 between
2782
3092
  * ```
3093
+ *
3094
+ *
3095
+ * @returns Value of property `filterValue`
2783
3096
  */
2784
3097
  getFilterValue(): string;
2785
3098
  /**
@@ -2794,6 +3107,8 @@ declare namespace sap {
2794
3107
  * of the table.
2795
3108
  *
2796
3109
  * Default value is `true`.
3110
+ *
3111
+ * @returns Value of property `flexible`
2797
3112
  */
2798
3113
  getFlexible(): boolean;
2799
3114
  /**
@@ -2802,6 +3117,8 @@ declare namespace sap {
2802
3117
  * Indicates if the column is grouped.
2803
3118
  *
2804
3119
  * Default value is `false`.
3120
+ *
3121
+ * @returns Value of property `grouped`
2805
3122
  */
2806
3123
  getGrouped(): boolean;
2807
3124
  /**
@@ -2811,6 +3128,8 @@ declare namespace sap {
2811
3128
  * alignment. You have to set the text align directly on the template.
2812
3129
  *
2813
3130
  * Default value is `Begin`.
3131
+ *
3132
+ * @returns Value of property `hAlign`
2814
3133
  */
2815
3134
  getHAlign(): sap.ui.core.HorizontalAlign;
2816
3135
  /**
@@ -2824,6 +3143,8 @@ declare namespace sap {
2824
3143
  * which are part of the header with the greatest span will be set to fixed.
2825
3144
  *
2826
3145
  * Default value is `1`.
3146
+ *
3147
+ * @returns Value of property `headerSpan`
2827
3148
  */
2828
3149
  getHeaderSpan(): any;
2829
3150
  /**
@@ -2855,6 +3176,8 @@ declare namespace sap {
2855
3176
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
2856
3177
  *
2857
3178
  * Default value is `0`.
3179
+ *
3180
+ * @returns Value of property `minWidth`
2858
3181
  */
2859
3182
  getMinWidth(): int;
2860
3183
  /**
@@ -2874,6 +3197,8 @@ declare namespace sap {
2874
3197
  * The name of the column which is used for the text representation of this column, for example, in menus.
2875
3198
  * If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
2876
3199
  * as a fallback option.
3200
+ *
3201
+ * @returns Value of property `name`
2877
3202
  */
2878
3203
  getName(): string;
2879
3204
  /**
@@ -2883,6 +3208,8 @@ declare namespace sap {
2883
3208
  * (SHIFT + Left/Right Arrow keys)
2884
3209
  *
2885
3210
  * Default value is `true`.
3211
+ *
3212
+ * @returns Value of property `resizable`
2886
3213
  */
2887
3214
  getResizable(): boolean;
2888
3215
  /**
@@ -2893,6 +3220,8 @@ declare namespace sap {
2893
3220
  * Defines if the filter menu entry is displayed
2894
3221
  *
2895
3222
  * Default value is `true`.
3223
+ *
3224
+ * @returns Value of property `showFilterMenuEntry`
2896
3225
  */
2897
3226
  getShowFilterMenuEntry(): boolean;
2898
3227
  /**
@@ -2903,6 +3232,8 @@ declare namespace sap {
2903
3232
  * Defines if the sort menu entries are displayed
2904
3233
  *
2905
3234
  * Default value is `true`.
3235
+ *
3236
+ * @returns Value of property `showSortMenuEntry`
2906
3237
  */
2907
3238
  getShowSortMenuEntry(): boolean;
2908
3239
  /**
@@ -2912,6 +3243,8 @@ declare namespace sap {
2912
3243
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2913
3244
  *
2914
3245
  * Default value is `false`.
3246
+ *
3247
+ * @returns Value of property `sorted`
2915
3248
  */
2916
3249
  getSorted(): boolean;
2917
3250
  /**
@@ -2921,6 +3254,8 @@ declare namespace sap {
2921
3254
  * rendered if the property `sorted` is `true`
2922
3255
  *
2923
3256
  * Default value is `Ascending`.
3257
+ *
3258
+ * @returns Value of property `sortOrder`
2924
3259
  */
2925
3260
  getSortOrder(): sap.ui.table.SortOrder;
2926
3261
  /**
@@ -2932,6 +3267,8 @@ declare namespace sap {
2932
3267
  * displayed in the same column, only one of the two can be defined as `sortProperty`.
2933
3268
  *
2934
3269
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
3270
+ *
3271
+ * @returns Value of property `sortProperty`
2935
3272
  */
2936
3273
  getSortProperty(): string;
2937
3274
  /**
@@ -2950,6 +3287,8 @@ declare namespace sap {
2950
3287
  getTemplate(): sap.ui.core.Control | string;
2951
3288
  /**
2952
3289
  * Returns a template clone. It either finds an unused clone or clones a new one from the template.
3290
+ *
3291
+ * @returns Clone of the template, or `null` if no template is defined
2953
3292
  */
2954
3293
  getTemplateClone(
2955
3294
  /**
@@ -2963,6 +3302,8 @@ declare namespace sap {
2963
3302
  * Invisible controls are not rendered.
2964
3303
  *
2965
3304
  * Default value is `true`.
3305
+ *
3306
+ * @returns Value of property `visible`
2966
3307
  */
2967
3308
  getVisible(): boolean;
2968
3309
  /**
@@ -2973,6 +3314,8 @@ declare namespace sap {
2973
3314
  * than 48px. This property can be changed by the user or by the application configuration/personalization.
2974
3315
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
2975
3316
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
3317
+ *
3318
+ * @returns Value of property `width`
2976
3319
  */
2977
3320
  getWidth(): sap.ui.core.CSSSize;
2978
3321
  /**
@@ -2980,6 +3323,8 @@ declare namespace sap {
2980
3323
  *
2981
3324
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
2982
3325
  * and returns its index if found or -1 otherwise.
3326
+ *
3327
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
2983
3328
  */
2984
3329
  indexOfMultiLabel(
2985
3330
  /**
@@ -2991,6 +3336,8 @@ declare namespace sap {
2991
3336
  * @SINCE 1.13.1
2992
3337
  *
2993
3338
  * Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
3339
+ *
3340
+ * @returns Reference to `this` in order to allow method chaining
2994
3341
  */
2995
3342
  insertMultiLabel(
2996
3343
  /**
@@ -3010,12 +3357,16 @@ declare namespace sap {
3010
3357
  * Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
3011
3358
  *
3012
3359
  * Additionally, it unregisters them from the hosting UIArea.
3360
+ *
3361
+ * @returns An array of the removed elements (might be empty)
3013
3362
  */
3014
3363
  removeAllMultiLabels(): sap.ui.core.Control[];
3015
3364
  /**
3016
3365
  * @SINCE 1.13.1
3017
3366
  *
3018
3367
  * Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
3368
+ *
3369
+ * @returns The removed multiLabel or `null`
3019
3370
  */
3020
3371
  removeMultiLabel(
3021
3372
  /**
@@ -3037,6 +3388,8 @@ declare namespace sap {
3037
3388
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3038
3389
  *
3039
3390
  * Default value is `false`.
3391
+ *
3392
+ * @returns Reference to `this` in order to allow method chaining
3040
3393
  */
3041
3394
  setAutoResizable(
3042
3395
  /**
@@ -3051,6 +3404,8 @@ declare namespace sap {
3051
3404
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
3052
3405
  *
3053
3406
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3407
+ *
3408
+ * @returns Reference to `this` in order to allow method chaining
3054
3409
  */
3055
3410
  setDefaultFilterOperator(
3056
3411
  /**
@@ -3068,6 +3423,8 @@ declare namespace sap {
3068
3423
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3069
3424
  *
3070
3425
  * Default value is `false`.
3426
+ *
3427
+ * @returns Reference to `this` in order to allow method chaining
3071
3428
  */
3072
3429
  setFiltered(
3073
3430
  /**
@@ -3081,6 +3438,8 @@ declare namespace sap {
3081
3438
  * Filter operator to use when filtering this column.
3082
3439
  *
3083
3440
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3441
+ *
3442
+ * @returns Reference to `this` in order to allow method chaining
3084
3443
  */
3085
3444
  setFilterOperator(
3086
3445
  /**
@@ -3100,6 +3459,8 @@ declare namespace sap {
3100
3459
  * entry is a text input field.
3101
3460
  *
3102
3461
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3462
+ *
3463
+ * @returns Reference to `this` in order to allow method chaining
3103
3464
  */
3104
3465
  setFilterProperty(
3105
3466
  /**
@@ -3111,6 +3472,8 @@ declare namespace sap {
3111
3472
  * The filter type can be the class name of a type, an expression similar to the binding syntax, or a function.
3112
3473
  * A function receives the entered filter value as a parameter and should return the appropriate value for
3113
3474
  * the filter expression.
3475
+ *
3476
+ * @returns Reference to `this` in order to allow method chaining
3114
3477
  */
3115
3478
  setFilterType(
3116
3479
  /**
@@ -3140,6 +3503,8 @@ declare namespace sap {
3140
3503
  *
3141
3504
  *
3142
3505
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3506
+ *
3507
+ * @returns Reference to `this` in order to allow method chaining
3143
3508
  */
3144
3509
  setFilterValue(
3145
3510
  /**
@@ -3161,6 +3526,8 @@ declare namespace sap {
3161
3526
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3162
3527
  *
3163
3528
  * Default value is `true`.
3529
+ *
3530
+ * @returns Reference to `this` in order to allow method chaining
3164
3531
  */
3165
3532
  setFlexible(
3166
3533
  /**
@@ -3176,6 +3543,8 @@ declare namespace sap {
3176
3543
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3177
3544
  *
3178
3545
  * Default value is `false`.
3546
+ *
3547
+ * @returns Reference to `this` in order to allow method chaining
3179
3548
  */
3180
3549
  setGrouped(
3181
3550
  /**
@@ -3192,6 +3561,8 @@ declare namespace sap {
3192
3561
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3193
3562
  *
3194
3563
  * Default value is `Begin`.
3564
+ *
3565
+ * @returns Reference to `this` in order to allow method chaining
3195
3566
  */
3196
3567
  setHAlign(
3197
3568
  /**
@@ -3212,6 +3583,8 @@ declare namespace sap {
3212
3583
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3213
3584
  *
3214
3585
  * Default value is `1`.
3586
+ *
3587
+ * @returns Reference to `this` in order to allow method chaining
3215
3588
  */
3216
3589
  setHeaderSpan(
3217
3590
  /**
@@ -3221,6 +3594,8 @@ declare namespace sap {
3221
3594
  ): this;
3222
3595
  /**
3223
3596
  * Sets the aggregated {@link #getLabel label}.
3597
+ *
3598
+ * @returns Reference to `this` in order to allow method chaining
3224
3599
  */
3225
3600
  setLabel(
3226
3601
  /**
@@ -3230,6 +3605,8 @@ declare namespace sap {
3230
3605
  ): this;
3231
3606
  /**
3232
3607
  * Sets the aggregated {@link #getMenu menu}.
3608
+ *
3609
+ * @returns Reference to `this` in order to allow method chaining
3233
3610
  */
3234
3611
  setMenu(
3235
3612
  /**
@@ -3250,6 +3627,8 @@ declare namespace sap {
3250
3627
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3251
3628
  *
3252
3629
  * Default value is `0`.
3630
+ *
3631
+ * @returns Reference to `this` in order to allow method chaining
3253
3632
  */
3254
3633
  setMinWidth(
3255
3634
  /**
@@ -3267,6 +3646,8 @@ declare namespace sap {
3267
3646
  * as a fallback option.
3268
3647
  *
3269
3648
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3649
+ *
3650
+ * @returns Reference to `this` in order to allow method chaining
3270
3651
  */
3271
3652
  setName(
3272
3653
  /**
@@ -3283,6 +3664,8 @@ declare namespace sap {
3283
3664
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3284
3665
  *
3285
3666
  * Default value is `true`.
3667
+ *
3668
+ * @returns Reference to `this` in order to allow method chaining
3286
3669
  */
3287
3670
  setResizable(
3288
3671
  /**
@@ -3300,6 +3683,8 @@ declare namespace sap {
3300
3683
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3301
3684
  *
3302
3685
  * Default value is `true`.
3686
+ *
3687
+ * @returns Reference to `this` in order to allow method chaining
3303
3688
  */
3304
3689
  setShowFilterMenuEntry(
3305
3690
  /**
@@ -3317,6 +3702,8 @@ declare namespace sap {
3317
3702
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3318
3703
  *
3319
3704
  * Default value is `true`.
3705
+ *
3706
+ * @returns Reference to `this` in order to allow method chaining
3320
3707
  */
3321
3708
  setShowSortMenuEntry(
3322
3709
  /**
@@ -3333,6 +3720,8 @@ declare namespace sap {
3333
3720
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3334
3721
  *
3335
3722
  * Default value is `false`.
3723
+ *
3724
+ * @returns Reference to `this` in order to allow method chaining
3336
3725
  */
3337
3726
  setSorted(
3338
3727
  /**
@@ -3349,6 +3738,8 @@ declare namespace sap {
3349
3738
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3350
3739
  *
3351
3740
  * Default value is `Ascending`.
3741
+ *
3742
+ * @returns Reference to `this` in order to allow method chaining
3352
3743
  */
3353
3744
  setSortOrder(
3354
3745
  /**
@@ -3367,6 +3758,8 @@ declare namespace sap {
3367
3758
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
3368
3759
  *
3369
3760
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3761
+ *
3762
+ * @returns Reference to `this` in order to allow method chaining
3370
3763
  */
3371
3764
  setSortProperty(
3372
3765
  /**
@@ -3376,6 +3769,8 @@ declare namespace sap {
3376
3769
  ): this;
3377
3770
  /**
3378
3771
  * Sets the aggregated {@link #getTemplate template}.
3772
+ *
3773
+ * @returns Reference to `this` in order to allow method chaining
3379
3774
  */
3380
3775
  setTemplate(
3381
3776
  /**
@@ -3391,6 +3786,8 @@ declare namespace sap {
3391
3786
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3392
3787
  *
3393
3788
  * Default value is `true`.
3789
+ *
3790
+ * @returns Reference to `this` in order to allow method chaining
3394
3791
  */
3395
3792
  setVisible(
3396
3793
  /**
@@ -3408,6 +3805,8 @@ declare namespace sap {
3408
3805
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
3409
3806
  *
3410
3807
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3808
+ *
3809
+ * @returns Reference to `this` in order to allow method chaining
3411
3810
  */
3412
3811
  setWidth(
3413
3812
  /**
@@ -3417,12 +3816,16 @@ declare namespace sap {
3417
3816
  ): this;
3418
3817
  /**
3419
3818
  * Returns whether the column should be rendered.
3819
+ *
3820
+ * @returns Returns `true`, if the column should be rendered
3420
3821
  */
3421
3822
  shouldRender(): boolean;
3422
3823
  /**
3423
3824
  * @deprecated (since 1.5.1) - Please use the function "sap.ui.Table.prototype.sort".
3424
3825
  *
3425
3826
  * Sorts the current column ascending or descending.
3827
+ *
3828
+ * @returns Reference to `this` in order to allow method chaining
3426
3829
  */
3427
3830
  sort(
3428
3831
  /**
@@ -3491,6 +3894,8 @@ declare namespace sap {
3491
3894
  * information contained in `oClassInfo`.
3492
3895
  *
3493
3896
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.unified.Menu.extend}.
3897
+ *
3898
+ * @returns Created class / constructor function
3494
3899
  */
3495
3900
  static extend<T extends Record<string, unknown>>(
3496
3901
  /**
@@ -3509,6 +3914,8 @@ declare namespace sap {
3509
3914
  ): Function;
3510
3915
  /**
3511
3916
  * Returns a metadata object for class sap.ui.table.ColumnMenu.
3917
+ *
3918
+ * @returns Metadata object describing this class
3512
3919
  */
3513
3920
  static getMetadata(): sap.ui.core.ElementMetadata;
3514
3921
  }
@@ -3552,6 +3959,8 @@ declare namespace sap {
3552
3959
  * contained in `oClassInfo`.
3553
3960
  *
3554
3961
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
3962
+ *
3963
+ * @returns Created class / constructor function
3555
3964
  */
3556
3965
  static extend<T extends Record<string, unknown>>(
3557
3966
  /**
@@ -3570,10 +3979,14 @@ declare namespace sap {
3570
3979
  ): Function;
3571
3980
  /**
3572
3981
  * Returns a metadata object for class sap.ui.table.Row.
3982
+ *
3983
+ * @returns Metadata object describing this class
3573
3984
  */
3574
3985
  static getMetadata(): sap.ui.core.ElementMetadata;
3575
3986
  /**
3576
3987
  * Adds some cell to the aggregation {@link #getCells cells}.
3988
+ *
3989
+ * @returns Reference to `this` in order to allow method chaining
3577
3990
  */
3578
3991
  addCell(
3579
3992
  /**
@@ -3583,6 +3996,8 @@ declare namespace sap {
3583
3996
  ): this;
3584
3997
  /**
3585
3998
  * Destroys all the cells in the aggregation {@link #getCells cells}.
3999
+ *
4000
+ * @returns Reference to `this` in order to allow method chaining
3586
4001
  */
3587
4002
  destroyCells(): this;
3588
4003
  /**
@@ -3596,18 +4011,15 @@ declare namespace sap {
3596
4011
  /**
3597
4012
  * Returns the index of the row in the table or -1 if not added to a table. This function considers the
3598
4013
  * scroll position of the table and also takes fixed rows and fixed bottom rows into account.
3599
- */
3600
- getIndex(): int;
3601
- /**
3602
- * Returns the related `RowAction` of the row.
3603
4014
  *
3604
- * This function must only be used for application testing purposes. The `RowAction` is generated based
3605
- * on a template. Manipulations of the object or its items are not supported.
4015
+ * @returns index of the row (considers scroll position and fixed rows)
3606
4016
  */
3607
- getRowAction(): sap.ui.table.RowAction;
4017
+ getIndex(): int;
3608
4018
  /**
3609
4019
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCells cells}. and returns
3610
4020
  * its index if found or -1 otherwise.
4021
+ *
4022
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3611
4023
  */
3612
4024
  indexOfCell(
3613
4025
  /**
@@ -3617,6 +4029,8 @@ declare namespace sap {
3617
4029
  ): int;
3618
4030
  /**
3619
4031
  * Inserts a cell into the aggregation {@link #getCells cells}.
4032
+ *
4033
+ * @returns Reference to `this` in order to allow method chaining
3620
4034
  */
3621
4035
  insertCell(
3622
4036
  /**
@@ -3634,10 +4048,14 @@ declare namespace sap {
3634
4048
  * Removes all the controls from the aggregation {@link #getCells cells}.
3635
4049
  *
3636
4050
  * Additionally, it unregisters them from the hosting UIArea.
4051
+ *
4052
+ * @returns An array of the removed elements (might be empty)
3637
4053
  */
3638
4054
  removeAllCells(): sap.ui.core.Control[];
3639
4055
  /**
3640
4056
  * Removes a cell from the aggregation {@link #getCells cells}.
4057
+ *
4058
+ * @returns The removed cell or `null`
3641
4059
  */
3642
4060
  removeCell(
3643
4061
  /**
@@ -3690,6 +4108,8 @@ declare namespace sap {
3690
4108
  * information contained in `oClassInfo`.
3691
4109
  *
3692
4110
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4111
+ *
4112
+ * @returns Created class / constructor function
3693
4113
  */
3694
4114
  static extend<T extends Record<string, unknown>>(
3695
4115
  /**
@@ -3708,10 +4128,14 @@ declare namespace sap {
3708
4128
  ): Function;
3709
4129
  /**
3710
4130
  * Returns a metadata object for class sap.ui.table.RowAction.
4131
+ *
4132
+ * @returns Metadata object describing this class
3711
4133
  */
3712
4134
  static getMetadata(): sap.ui.core.ElementMetadata;
3713
4135
  /**
3714
4136
  * Adds some item to the aggregation {@link #getItems items}.
4137
+ *
4138
+ * @returns Reference to `this` in order to allow method chaining
3715
4139
  */
3716
4140
  addItem(
3717
4141
  /**
@@ -3721,6 +4145,8 @@ declare namespace sap {
3721
4145
  ): this;
3722
4146
  /**
3723
4147
  * Destroys all the items in the aggregation {@link #getItems items}.
4148
+ *
4149
+ * @returns Reference to `this` in order to allow method chaining
3724
4150
  */
3725
4151
  destroyItems(): this;
3726
4152
  /**
@@ -3735,11 +4161,15 @@ declare namespace sap {
3735
4161
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3736
4162
  *
3737
4163
  * Default value is `true`.
4164
+ *
4165
+ * @returns Value of property `visible`
3738
4166
  */
3739
4167
  getVisible(): boolean;
3740
4168
  /**
3741
4169
  * Checks for the provided `sap.ui.table.RowActionItem` in the aggregation {@link #getItems items}. and
3742
4170
  * returns its index if found or -1 otherwise.
4171
+ *
4172
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
3743
4173
  */
3744
4174
  indexOfItem(
3745
4175
  /**
@@ -3749,6 +4179,8 @@ declare namespace sap {
3749
4179
  ): int;
3750
4180
  /**
3751
4181
  * Inserts a item into the aggregation {@link #getItems items}.
4182
+ *
4183
+ * @returns Reference to `this` in order to allow method chaining
3752
4184
  */
3753
4185
  insertItem(
3754
4186
  /**
@@ -3766,10 +4198,14 @@ declare namespace sap {
3766
4198
  * Removes all the controls from the aggregation {@link #getItems items}.
3767
4199
  *
3768
4200
  * Additionally, it unregisters them from the hosting UIArea.
4201
+ *
4202
+ * @returns An array of the removed elements (might be empty)
3769
4203
  */
3770
4204
  removeAllItems(): sap.ui.table.RowActionItem[];
3771
4205
  /**
3772
4206
  * Removes a item from the aggregation {@link #getItems items}.
4207
+ *
4208
+ * @returns The removed item or `null`
3773
4209
  */
3774
4210
  removeItem(
3775
4211
  /**
@@ -3785,6 +4221,8 @@ declare namespace sap {
3785
4221
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3786
4222
  *
3787
4223
  * Default value is `true`.
4224
+ *
4225
+ * @returns Reference to `this` in order to allow method chaining
3788
4226
  */
3789
4227
  setVisible(
3790
4228
  /**
@@ -3836,6 +4274,8 @@ declare namespace sap {
3836
4274
  * the information contained in `oClassInfo`.
3837
4275
  *
3838
4276
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4277
+ *
4278
+ * @returns Created class / constructor function
3839
4279
  */
3840
4280
  static extend<T extends Record<string, unknown>>(
3841
4281
  /**
@@ -3854,6 +4294,8 @@ declare namespace sap {
3854
4294
  ): Function;
3855
4295
  /**
3856
4296
  * Returns a metadata object for class sap.ui.table.RowActionItem.
4297
+ *
4298
+ * @returns Metadata object describing this class
3857
4299
  */
3858
4300
  static getMetadata(): sap.ui.core.ElementMetadata;
3859
4301
  /**
@@ -3863,6 +4305,8 @@ declare namespace sap {
3863
4305
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3864
4306
  *
3865
4307
  * The `press` is fired when the user triggers the corresponding action.
4308
+ *
4309
+ * @returns Reference to `this` in order to allow method chaining
3866
4310
  */
3867
4311
  attachPress(
3868
4312
  /**
@@ -3886,6 +4330,8 @@ declare namespace sap {
3886
4330
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3887
4331
  *
3888
4332
  * The `press` is fired when the user triggers the corresponding action.
4333
+ *
4334
+ * @returns Reference to `this` in order to allow method chaining
3889
4335
  */
3890
4336
  attachPress(
3891
4337
  /**
@@ -3901,6 +4347,8 @@ declare namespace sap {
3901
4347
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.ui.table.RowActionItem`.
3902
4348
  *
3903
4349
  * The passed function and listener object must match the ones used for event registration.
4350
+ *
4351
+ * @returns Reference to `this` in order to allow method chaining
3904
4352
  */
3905
4353
  detachPress(
3906
4354
  /**
@@ -3914,6 +4362,8 @@ declare namespace sap {
3914
4362
  ): this;
3915
4363
  /**
3916
4364
  * Fires event {@link #event:press press} to attached listeners.
4365
+ *
4366
+ * @returns Reference to `this` in order to allow method chaining
3917
4367
  */
3918
4368
  firePress(
3919
4369
  /**
@@ -3925,6 +4375,8 @@ declare namespace sap {
3925
4375
  * Gets current value of property {@link #getIcon icon}.
3926
4376
  *
3927
4377
  * The icon of the item.
4378
+ *
4379
+ * @returns Value of property `icon`
3928
4380
  */
3929
4381
  getIcon(): sap.ui.core.URI;
3930
4382
  /**
@@ -3933,6 +4385,8 @@ declare namespace sap {
3933
4385
  * The text of the item. It is used as tooltip and for accessibility purposes.
3934
4386
  *
3935
4387
  * Default value is `empty string`.
4388
+ *
4389
+ * @returns Value of property `text`
3936
4390
  */
3937
4391
  getText(): string;
3938
4392
  /**
@@ -3942,6 +4396,8 @@ declare namespace sap {
3942
4396
  * an icon or text is set explicitly this setting is used.
3943
4397
  *
3944
4398
  * Default value is `Custom`.
4399
+ *
4400
+ * @returns Value of property `type`
3945
4401
  */
3946
4402
  getType(): sap.ui.table.RowActionType;
3947
4403
  /**
@@ -3950,6 +4406,8 @@ declare namespace sap {
3950
4406
  * Whether the item should be visible on the screen.
3951
4407
  *
3952
4408
  * Default value is `true`.
4409
+ *
4410
+ * @returns Value of property `visible`
3953
4411
  */
3954
4412
  getVisible(): boolean;
3955
4413
  /**
@@ -3958,6 +4416,8 @@ declare namespace sap {
3958
4416
  * The icon of the item.
3959
4417
  *
3960
4418
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4419
+ *
4420
+ * @returns Reference to `this` in order to allow method chaining
3961
4421
  */
3962
4422
  setIcon(
3963
4423
  /**
@@ -3973,6 +4433,8 @@ declare namespace sap {
3973
4433
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3974
4434
  *
3975
4435
  * Default value is `empty string`.
4436
+ *
4437
+ * @returns Reference to `this` in order to allow method chaining
3976
4438
  */
3977
4439
  setText(
3978
4440
  /**
@@ -3989,6 +4451,8 @@ declare namespace sap {
3989
4451
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3990
4452
  *
3991
4453
  * Default value is `Custom`.
4454
+ *
4455
+ * @returns Reference to `this` in order to allow method chaining
3992
4456
  */
3993
4457
  setType(
3994
4458
  /**
@@ -4004,6 +4468,8 @@ declare namespace sap {
4004
4468
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4005
4469
  *
4006
4470
  * Default value is `true`.
4471
+ *
4472
+ * @returns Reference to `this` in order to allow method chaining
4007
4473
  */
4008
4474
  setVisible(
4009
4475
  /**
@@ -4055,6 +4521,8 @@ declare namespace sap {
4055
4521
  * the information contained in `oClassInfo`.
4056
4522
  *
4057
4523
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
4524
+ *
4525
+ * @returns Created class / constructor function
4058
4526
  */
4059
4527
  static extend<T extends Record<string, unknown>>(
4060
4528
  /**
@@ -4073,6 +4541,8 @@ declare namespace sap {
4073
4541
  ): Function;
4074
4542
  /**
4075
4543
  * Returns a metadata object for class sap.ui.table.RowSettings.
4544
+ *
4545
+ * @returns Metadata object describing this class
4076
4546
  */
4077
4547
  static getMetadata(): sap.ui.core.ElementMetadata;
4078
4548
  /**
@@ -4093,6 +4563,8 @@ declare namespace sap {
4093
4563
  * property must be set.
4094
4564
  *
4095
4565
  * Default value is `"None"`.
4566
+ *
4567
+ * @returns Value of property `highlight`
4096
4568
  */
4097
4569
  getHighlight(): string;
4098
4570
  /**
@@ -4105,6 +4577,8 @@ declare namespace sap {
4105
4577
  * the highlight.
4106
4578
  *
4107
4579
  * Default value is `empty string`.
4580
+ *
4581
+ * @returns Value of property `highlightText`
4108
4582
  */
4109
4583
  getHighlightText(): string;
4110
4584
  /**
@@ -4118,6 +4592,8 @@ declare namespace sap {
4118
4592
  * must be set for **one** row only.
4119
4593
  *
4120
4594
  * Default value is `false`.
4595
+ *
4596
+ * @returns Value of property `navigated`
4121
4597
  */
4122
4598
  getNavigated(): boolean;
4123
4599
  /**
@@ -4140,6 +4616,8 @@ declare namespace sap {
4140
4616
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4141
4617
  *
4142
4618
  * Default value is `"None"`.
4619
+ *
4620
+ * @returns Reference to `this` in order to allow method chaining
4143
4621
  */
4144
4622
  setHighlight(
4145
4623
  /**
@@ -4159,6 +4637,8 @@ declare namespace sap {
4159
4637
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4160
4638
  *
4161
4639
  * Default value is `empty string`.
4640
+ *
4641
+ * @returns Reference to `this` in order to allow method chaining
4162
4642
  */
4163
4643
  setHighlightText(
4164
4644
  /**
@@ -4179,6 +4659,8 @@ declare namespace sap {
4179
4659
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4180
4660
  *
4181
4661
  * Default value is `false`.
4662
+ *
4663
+ * @returns Reference to `this` in order to allow method chaining
4182
4664
  */
4183
4665
  setNavigated(
4184
4666
  /**
@@ -4244,6 +4726,8 @@ declare namespace sap {
4244
4726
  * contained in `oClassInfo`.
4245
4727
  *
4246
4728
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
4729
+ *
4730
+ * @returns Created class / constructor function
4247
4731
  */
4248
4732
  static extend<T extends Record<string, unknown>>(
4249
4733
  /**
@@ -4262,10 +4746,14 @@ declare namespace sap {
4262
4746
  ): Function;
4263
4747
  /**
4264
4748
  * Returns a metadata object for class sap.ui.table.Table.
4749
+ *
4750
+ * @returns Metadata object describing this class
4265
4751
  */
4266
4752
  static getMetadata(): sap.ui.core.ElementMetadata;
4267
4753
  /**
4268
4754
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4755
+ *
4756
+ * @returns Reference to `this` in order to allow method chaining
4269
4757
  */
4270
4758
  addAriaLabelledBy(
4271
4759
  /**
@@ -4275,6 +4763,8 @@ declare namespace sap {
4275
4763
  ): this;
4276
4764
  /**
4277
4765
  * Adds some column to the aggregation {@link #getColumns columns}.
4766
+ *
4767
+ * @returns Reference to `this` in order to allow method chaining
4278
4768
  */
4279
4769
  addColumn(
4280
4770
  /**
@@ -4284,6 +4774,8 @@ declare namespace sap {
4284
4774
  ): this;
4285
4775
  /**
4286
4776
  * Adds some extension to the aggregation {@link #getExtension extension}.
4777
+ *
4778
+ * @returns Reference to `this` in order to allow method chaining
4287
4779
  */
4288
4780
  addExtension(
4289
4781
  /**
@@ -4295,6 +4787,8 @@ declare namespace sap {
4295
4787
  * @SINCE 1.64
4296
4788
  *
4297
4789
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
4790
+ *
4791
+ * @returns Reference to `this` in order to allow method chaining
4298
4792
  */
4299
4793
  addPlugin(
4300
4794
  /**
@@ -4304,6 +4798,8 @@ declare namespace sap {
4304
4798
  ): this;
4305
4799
  /**
4306
4800
  * Adds some row to the aggregation {@link #getRows rows}.
4801
+ *
4802
+ * @returns Reference to `this` in order to allow method chaining
4307
4803
  */
4308
4804
  addRow(
4309
4805
  /**
@@ -4314,6 +4810,8 @@ declare namespace sap {
4314
4810
  /**
4315
4811
  * Adds the given selection interval to the selection. In case of a single selection, only `iIndexTo` is
4316
4812
  * added to the selection.
4813
+ *
4814
+ * @returns Reference to `this` in order to allow method chaining
4317
4815
  */
4318
4816
  addSelectionInterval(
4319
4817
  /**
@@ -4335,6 +4833,8 @@ declare namespace sap {
4335
4833
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4336
4834
  *
4337
4835
  * Fired when the user requests the context menu for a table cell.
4836
+ *
4837
+ * @returns Reference to `this` in order to allow method chaining
4338
4838
  */
4339
4839
  attachBeforeOpenContextMenu(
4340
4840
  /**
@@ -4361,6 +4861,8 @@ declare namespace sap {
4361
4861
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4362
4862
  *
4363
4863
  * Fired when the user requests the context menu for a table cell.
4864
+ *
4865
+ * @returns Reference to `this` in order to allow method chaining
4364
4866
  */
4365
4867
  attachBeforeOpenContextMenu(
4366
4868
  /**
@@ -4382,6 +4884,8 @@ declare namespace sap {
4382
4884
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4383
4885
  *
4384
4886
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
4887
+ *
4888
+ * @returns Reference to `this` in order to allow method chaining
4385
4889
  */
4386
4890
  attachBusyStateChanged(
4387
4891
  /**
@@ -4408,6 +4912,8 @@ declare namespace sap {
4408
4912
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4409
4913
  *
4410
4914
  * This event gets fired when the busy state of the table changes. It should only be used by composite controls.
4915
+ *
4916
+ * @returns Reference to `this` in order to allow method chaining
4411
4917
  */
4412
4918
  attachBusyStateChanged(
4413
4919
  /**
@@ -4428,6 +4934,8 @@ declare namespace sap {
4428
4934
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4429
4935
  *
4430
4936
  * fired when the user clicks a cell of the table (experimental!).
4937
+ *
4938
+ * @returns Reference to `this` in order to allow method chaining
4431
4939
  */
4432
4940
  attachCellClick(
4433
4941
  /**
@@ -4453,6 +4961,8 @@ declare namespace sap {
4453
4961
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4454
4962
  *
4455
4963
  * fired when the user clicks a cell of the table (experimental!).
4964
+ *
4965
+ * @returns Reference to `this` in order to allow method chaining
4456
4966
  */
4457
4967
  attachCellClick(
4458
4968
  /**
@@ -4475,6 +4985,8 @@ declare namespace sap {
4475
4985
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4476
4986
  *
4477
4987
  * fired when the user clicks a cell of the table.
4988
+ *
4989
+ * @returns Reference to `this` in order to allow method chaining
4478
4990
  */
4479
4991
  attachCellContextmenu(
4480
4992
  /**
@@ -4502,6 +5014,8 @@ declare namespace sap {
4502
5014
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4503
5015
  *
4504
5016
  * fired when the user clicks a cell of the table.
5017
+ *
5018
+ * @returns Reference to `this` in order to allow method chaining
4505
5019
  */
4506
5020
  attachCellContextmenu(
4507
5021
  /**
@@ -4522,6 +5036,8 @@ declare namespace sap {
4522
5036
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4523
5037
  *
4524
5038
  * fired when a column of the table should be freezed
5039
+ *
5040
+ * @returns Reference to `this` in order to allow method chaining
4525
5041
  */
4526
5042
  attachColumnFreeze(
4527
5043
  /**
@@ -4547,6 +5063,8 @@ declare namespace sap {
4547
5063
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4548
5064
  *
4549
5065
  * fired when a column of the table should be freezed
5066
+ *
5067
+ * @returns Reference to `this` in order to allow method chaining
4550
5068
  */
4551
5069
  attachColumnFreeze(
4552
5070
  /**
@@ -4565,6 +5083,8 @@ declare namespace sap {
4565
5083
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4566
5084
  *
4567
5085
  * fired when a table column is moved.
5086
+ *
5087
+ * @returns Reference to `this` in order to allow method chaining
4568
5088
  */
4569
5089
  attachColumnMove(
4570
5090
  /**
@@ -4588,6 +5108,8 @@ declare namespace sap {
4588
5108
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4589
5109
  *
4590
5110
  * fired when a table column is moved.
5111
+ *
5112
+ * @returns Reference to `this` in order to allow method chaining
4591
5113
  */
4592
5114
  attachColumnMove(
4593
5115
  /**
@@ -4606,6 +5128,8 @@ declare namespace sap {
4606
5128
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4607
5129
  *
4608
5130
  * fired when a table column is resized.
5131
+ *
5132
+ * @returns Reference to `this` in order to allow method chaining
4609
5133
  */
4610
5134
  attachColumnResize(
4611
5135
  /**
@@ -4629,6 +5153,8 @@ declare namespace sap {
4629
5153
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4630
5154
  *
4631
5155
  * fired when a table column is resized.
5156
+ *
5157
+ * @returns Reference to `this` in order to allow method chaining
4632
5158
  */
4633
5159
  attachColumnResize(
4634
5160
  /**
@@ -4647,6 +5173,8 @@ declare namespace sap {
4647
5173
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4648
5174
  *
4649
5175
  * fired when a column of the table has been selected
5176
+ *
5177
+ * @returns Reference to `this` in order to allow method chaining
4650
5178
  */
4651
5179
  attachColumnSelect(
4652
5180
  /**
@@ -4670,6 +5198,8 @@ declare namespace sap {
4670
5198
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4671
5199
  *
4672
5200
  * fired when a column of the table has been selected
5201
+ *
5202
+ * @returns Reference to `this` in order to allow method chaining
4673
5203
  */
4674
5204
  attachColumnSelect(
4675
5205
  /**
@@ -4689,6 +5219,8 @@ declare namespace sap {
4689
5219
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4690
5220
  *
4691
5221
  * fired when the visibility of a table column is changed.
5222
+ *
5223
+ * @returns Reference to `this` in order to allow method chaining
4692
5224
  */
4693
5225
  attachColumnVisibility(
4694
5226
  /**
@@ -4713,6 +5245,8 @@ declare namespace sap {
4713
5245
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4714
5246
  *
4715
5247
  * fired when the visibility of a table column is changed.
5248
+ *
5249
+ * @returns Reference to `this` in order to allow method chaining
4716
5250
  */
4717
5251
  attachColumnVisibility(
4718
5252
  /**
@@ -4734,6 +5268,8 @@ declare namespace sap {
4734
5268
  *
4735
5269
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4736
5270
  * the event was triggered is passed as parameter.
5271
+ *
5272
+ * @returns Reference to `this` in order to allow method chaining
4737
5273
  */
4738
5274
  attachCustomFilter(
4739
5275
  /**
@@ -4760,6 +5296,8 @@ declare namespace sap {
4760
5296
  *
4761
5297
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4762
5298
  * the event was triggered is passed as parameter.
5299
+ *
5300
+ * @returns Reference to `this` in order to allow method chaining
4763
5301
  */
4764
5302
  attachCustomFilter(
4765
5303
  /**
@@ -4778,6 +5316,8 @@ declare namespace sap {
4778
5316
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4779
5317
  *
4780
5318
  * fired when the table is filtered.
5319
+ *
5320
+ * @returns Reference to `this` in order to allow method chaining
4781
5321
  */
4782
5322
  attachFilter(
4783
5323
  /**
@@ -4801,6 +5341,8 @@ declare namespace sap {
4801
5341
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4802
5342
  *
4803
5343
  * fired when the table is filtered.
5344
+ *
5345
+ * @returns Reference to `this` in order to allow method chaining
4804
5346
  */
4805
5347
  attachFilter(
4806
5348
  /**
@@ -4823,6 +5365,8 @@ declare namespace sap {
4823
5365
  *
4824
5366
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4825
5367
  * The event even is fired when setFirstVisibleRow is called programmatically.
5368
+ *
5369
+ * @returns Reference to `this` in order to allow method chaining
4826
5370
  */
4827
5371
  attachFirstVisibleRowChanged(
4828
5372
  /**
@@ -4850,6 +5394,8 @@ declare namespace sap {
4850
5394
  *
4851
5395
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4852
5396
  * The event even is fired when setFirstVisibleRow is called programmatically.
5397
+ *
5398
+ * @returns Reference to `this` in order to allow method chaining
4853
5399
  */
4854
5400
  attachFirstVisibleRowChanged(
4855
5401
  /**
@@ -4868,6 +5414,8 @@ declare namespace sap {
4868
5414
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4869
5415
  *
4870
5416
  * fired when the table is grouped (experimental!).
5417
+ *
5418
+ * @returns Reference to `this` in order to allow method chaining
4871
5419
  */
4872
5420
  attachGroup(
4873
5421
  /**
@@ -4891,6 +5439,8 @@ declare namespace sap {
4891
5439
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4892
5440
  *
4893
5441
  * fired when the table is grouped (experimental!).
5442
+ *
5443
+ * @returns Reference to `this` in order to allow method chaining
4894
5444
  */
4895
5445
  attachGroup(
4896
5446
  /**
@@ -4912,6 +5462,8 @@ declare namespace sap {
4912
5462
  *
4913
5463
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4914
5464
  * with the standard keyboard shortcut, if the focus is inside the table.
5465
+ *
5466
+ * @returns Reference to `this` in order to allow method chaining
4915
5467
  */
4916
5468
  attachPaste(
4917
5469
  /**
@@ -4938,6 +5490,8 @@ declare namespace sap {
4938
5490
  *
4939
5491
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4940
5492
  * with the standard keyboard shortcut, if the focus is inside the table.
5493
+ *
5494
+ * @returns Reference to `this` in order to allow method chaining
4941
5495
  */
4942
5496
  attachPaste(
4943
5497
  /**
@@ -4960,6 +5514,8 @@ declare namespace sap {
4960
5514
  * selection changes - to find out the selected rows you should better use the table selection API)
4961
5515
  *
4962
5516
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
5517
+ *
5518
+ * @returns Reference to `this` in order to allow method chaining
4963
5519
  */
4964
5520
  attachRowSelectionChange(
4965
5521
  /**
@@ -4987,6 +5543,8 @@ declare namespace sap {
4987
5543
  * selection changes - to find out the selected rows you should better use the table selection API)
4988
5544
  *
4989
5545
  * **Note:** If a selection plugin is applied to the table, this event won't be fired.
5546
+ *
5547
+ * @returns Reference to `this` in order to allow method chaining
4990
5548
  */
4991
5549
  attachRowSelectionChange(
4992
5550
  /**
@@ -5010,6 +5568,8 @@ declare namespace sap {
5010
5568
  * interaction, for example.
5011
5569
  *
5012
5570
  * **Note**: This event is fired often and must not be used for performance-critical tasks.
5571
+ *
5572
+ * @returns Reference to `this` in order to allow method chaining
5013
5573
  */
5014
5574
  attachRowsUpdated(
5015
5575
  /**
@@ -5038,6 +5598,8 @@ declare namespace sap {
5038
5598
  * interaction, for example.
5039
5599
  *
5040
5600
  * **Note**: This event is fired often and must not be used for performance-critical tasks.
5601
+ *
5602
+ * @returns Reference to `this` in order to allow method chaining
5041
5603
  */
5042
5604
  attachRowsUpdated(
5043
5605
  /**
@@ -5056,6 +5618,8 @@ declare namespace sap {
5056
5618
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
5057
5619
  *
5058
5620
  * fired when the table is sorted.
5621
+ *
5622
+ * @returns Reference to `this` in order to allow method chaining
5059
5623
  */
5060
5624
  attachSort(
5061
5625
  /**
@@ -5079,6 +5643,8 @@ declare namespace sap {
5079
5643
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
5080
5644
  *
5081
5645
  * fired when the table is sorted.
5646
+ *
5647
+ * @returns Reference to `this` in order to allow method chaining
5082
5648
  */
5083
5649
  attachSort(
5084
5650
  /**
@@ -5106,6 +5672,8 @@ declare namespace sap {
5106
5672
  *
5107
5673
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
5108
5674
  * of the possible properties of `oBindingInfo`.
5675
+ *
5676
+ * @returns Reference to `this` in order to allow method chaining
5109
5677
  */
5110
5678
  bindColumns(
5111
5679
  /**
@@ -5118,6 +5686,8 @@ declare namespace sap {
5118
5686
  *
5119
5687
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
5120
5688
  * of the possible properties of `oBindingInfo`.
5689
+ *
5690
+ * @returns Reference to `this` in order to allow method chaining
5121
5691
  */
5122
5692
  bindRows(
5123
5693
  /**
@@ -5127,58 +5697,82 @@ declare namespace sap {
5127
5697
  ): this;
5128
5698
  /**
5129
5699
  * Removes complete selection.
5700
+ *
5701
+ * @returns Reference to `this` in order to allow method chaining
5130
5702
  */
5131
5703
  clearSelection(): this;
5132
5704
  /**
5133
5705
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
5706
+ *
5707
+ * @returns Reference to `this` in order to allow method chaining
5134
5708
  */
5135
5709
  destroyColumns(): this;
5136
5710
  /**
5137
5711
  * @SINCE 1.54
5138
5712
  *
5139
5713
  * Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
5714
+ *
5715
+ * @returns Reference to `this` in order to allow method chaining
5140
5716
  */
5141
5717
  destroyContextMenu(): this;
5142
5718
  /**
5143
5719
  * Destroys all the extension in the aggregation {@link #getExtension extension}.
5720
+ *
5721
+ * @returns Reference to `this` in order to allow method chaining
5144
5722
  */
5145
5723
  destroyExtension(): this;
5146
5724
  /**
5147
5725
  * Destroys the footer in the aggregation {@link #getFooter footer}.
5726
+ *
5727
+ * @returns Reference to `this` in order to allow method chaining
5148
5728
  */
5149
5729
  destroyFooter(): this;
5150
5730
  /**
5151
5731
  * Destroys the noData in the aggregation {@link #getNoData noData}.
5732
+ *
5733
+ * @returns Reference to `this` in order to allow method chaining
5152
5734
  */
5153
5735
  destroyNoData(): this;
5154
5736
  /**
5155
5737
  * @SINCE 1.64
5156
5738
  *
5157
5739
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
5740
+ *
5741
+ * @returns Reference to `this` in order to allow method chaining
5158
5742
  */
5159
5743
  destroyPlugins(): this;
5160
5744
  /**
5161
5745
  * Destroys the rowActionTemplate in the aggregation {@link #getRowActionTemplate rowActionTemplate}.
5746
+ *
5747
+ * @returns Reference to `this` in order to allow method chaining
5162
5748
  */
5163
5749
  destroyRowActionTemplate(): this;
5164
5750
  /**
5165
5751
  * Destroys all the rows in the aggregation {@link #getRows rows}.
5752
+ *
5753
+ * @returns Reference to `this` in order to allow method chaining
5166
5754
  */
5167
5755
  destroyRows(): this;
5168
5756
  /**
5169
5757
  * Destroys the rowSettingsTemplate in the aggregation {@link #getRowSettingsTemplate rowSettingsTemplate}.
5758
+ *
5759
+ * @returns Reference to `this` in order to allow method chaining
5170
5760
  */
5171
5761
  destroyRowSettingsTemplate(): this;
5172
5762
  /**
5173
5763
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
5174
5764
  *
5175
5765
  * Destroys the title in the aggregation {@link #getTitle title}.
5766
+ *
5767
+ * @returns Reference to `this` in order to allow method chaining
5176
5768
  */
5177
5769
  destroyTitle(): this;
5178
5770
  /**
5179
5771
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
5180
5772
  *
5181
5773
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5774
+ *
5775
+ * @returns Reference to `this` in order to allow method chaining
5182
5776
  */
5183
5777
  destroyToolbar(): this;
5184
5778
  /**
@@ -5188,6 +5782,8 @@ declare namespace sap {
5188
5782
  * event of this `sap.ui.table.Table`.
5189
5783
  *
5190
5784
  * The passed function and listener object must match the ones used for event registration.
5785
+ *
5786
+ * @returns Reference to `this` in order to allow method chaining
5191
5787
  */
5192
5788
  detachBeforeOpenContextMenu(
5193
5789
  /**
@@ -5206,6 +5802,8 @@ declare namespace sap {
5206
5802
  * this `sap.ui.table.Table`.
5207
5803
  *
5208
5804
  * The passed function and listener object must match the ones used for event registration.
5805
+ *
5806
+ * @returns Reference to `this` in order to allow method chaining
5209
5807
  */
5210
5808
  detachBusyStateChanged(
5211
5809
  /**
@@ -5223,6 +5821,8 @@ declare namespace sap {
5223
5821
  * Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
5224
5822
  *
5225
5823
  * The passed function and listener object must match the ones used for event registration.
5824
+ *
5825
+ * @returns Reference to `this` in order to allow method chaining
5226
5826
  */
5227
5827
  detachCellClick(
5228
5828
  /**
@@ -5242,6 +5842,8 @@ declare namespace sap {
5242
5842
  * this `sap.ui.table.Table`.
5243
5843
  *
5244
5844
  * The passed function and listener object must match the ones used for event registration.
5845
+ *
5846
+ * @returns Reference to `this` in order to allow method chaining
5245
5847
  */
5246
5848
  detachCellContextmenu(
5247
5849
  /**
@@ -5259,6 +5861,8 @@ declare namespace sap {
5259
5861
  * Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
5260
5862
  *
5261
5863
  * The passed function and listener object must match the ones used for event registration.
5864
+ *
5865
+ * @returns Reference to `this` in order to allow method chaining
5262
5866
  */
5263
5867
  detachColumnFreeze(
5264
5868
  /**
@@ -5274,6 +5878,8 @@ declare namespace sap {
5274
5878
  * Detaches event handler `fnFunction` from the {@link #event:columnMove columnMove} event of this `sap.ui.table.Table`.
5275
5879
  *
5276
5880
  * The passed function and listener object must match the ones used for event registration.
5881
+ *
5882
+ * @returns Reference to `this` in order to allow method chaining
5277
5883
  */
5278
5884
  detachColumnMove(
5279
5885
  /**
@@ -5289,6 +5895,8 @@ declare namespace sap {
5289
5895
  * Detaches event handler `fnFunction` from the {@link #event:columnResize columnResize} event of this `sap.ui.table.Table`.
5290
5896
  *
5291
5897
  * The passed function and listener object must match the ones used for event registration.
5898
+ *
5899
+ * @returns Reference to `this` in order to allow method chaining
5292
5900
  */
5293
5901
  detachColumnResize(
5294
5902
  /**
@@ -5304,6 +5912,8 @@ declare namespace sap {
5304
5912
  * Detaches event handler `fnFunction` from the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
5305
5913
  *
5306
5914
  * The passed function and listener object must match the ones used for event registration.
5915
+ *
5916
+ * @returns Reference to `this` in order to allow method chaining
5307
5917
  */
5308
5918
  detachColumnSelect(
5309
5919
  /**
@@ -5320,6 +5930,8 @@ declare namespace sap {
5320
5930
  * this `sap.ui.table.Table`.
5321
5931
  *
5322
5932
  * The passed function and listener object must match the ones used for event registration.
5933
+ *
5934
+ * @returns Reference to `this` in order to allow method chaining
5323
5935
  */
5324
5936
  detachColumnVisibility(
5325
5937
  /**
@@ -5337,6 +5949,8 @@ declare namespace sap {
5337
5949
  * Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
5338
5950
  *
5339
5951
  * The passed function and listener object must match the ones used for event registration.
5952
+ *
5953
+ * @returns Reference to `this` in order to allow method chaining
5340
5954
  */
5341
5955
  detachCustomFilter(
5342
5956
  /**
@@ -5352,6 +5966,8 @@ declare namespace sap {
5352
5966
  * Detaches event handler `fnFunction` from the {@link #event:filter filter} event of this `sap.ui.table.Table`.
5353
5967
  *
5354
5968
  * The passed function and listener object must match the ones used for event registration.
5969
+ *
5970
+ * @returns Reference to `this` in order to allow method chaining
5355
5971
  */
5356
5972
  detachFilter(
5357
5973
  /**
@@ -5370,6 +5986,8 @@ declare namespace sap {
5370
5986
  * event of this `sap.ui.table.Table`.
5371
5987
  *
5372
5988
  * The passed function and listener object must match the ones used for event registration.
5989
+ *
5990
+ * @returns Reference to `this` in order to allow method chaining
5373
5991
  */
5374
5992
  detachFirstVisibleRowChanged(
5375
5993
  /**
@@ -5385,6 +6003,8 @@ declare namespace sap {
5385
6003
  * Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.Table`.
5386
6004
  *
5387
6005
  * The passed function and listener object must match the ones used for event registration.
6006
+ *
6007
+ * @returns Reference to `this` in order to allow method chaining
5388
6008
  */
5389
6009
  detachGroup(
5390
6010
  /**
@@ -5402,6 +6022,8 @@ declare namespace sap {
5402
6022
  * Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5403
6023
  *
5404
6024
  * The passed function and listener object must match the ones used for event registration.
6025
+ *
6026
+ * @returns Reference to `this` in order to allow method chaining
5405
6027
  */
5406
6028
  detachPaste(
5407
6029
  /**
@@ -5418,6 +6040,8 @@ declare namespace sap {
5418
6040
  * of this `sap.ui.table.Table`.
5419
6041
  *
5420
6042
  * The passed function and listener object must match the ones used for event registration.
6043
+ *
6044
+ * @returns Reference to `this` in order to allow method chaining
5421
6045
  */
5422
6046
  detachRowSelectionChange(
5423
6047
  /**
@@ -5435,6 +6059,8 @@ declare namespace sap {
5435
6059
  * Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
5436
6060
  *
5437
6061
  * The passed function and listener object must match the ones used for event registration.
6062
+ *
6063
+ * @returns Reference to `this` in order to allow method chaining
5438
6064
  */
5439
6065
  detachRowsUpdated(
5440
6066
  /**
@@ -5450,6 +6076,8 @@ declare namespace sap {
5450
6076
  * Detaches event handler `fnFunction` from the {@link #event:sort sort} event of this `sap.ui.table.Table`.
5451
6077
  *
5452
6078
  * The passed function and listener object must match the ones used for event registration.
6079
+ *
6080
+ * @returns Reference to `this` in order to allow method chaining
5453
6081
  */
5454
6082
  detachSort(
5455
6083
  /**
@@ -5470,6 +6098,8 @@ declare namespace sap {
5470
6098
  *
5471
6099
  * **Please note: This method uses synchronous requests. Support and functioning ends with the support
5472
6100
  * for synchronous requests in browsers.**
6101
+ *
6102
+ * @returns Export object
5473
6103
  */
5474
6104
  exportData(
5475
6105
  /**
@@ -5498,6 +6128,8 @@ declare namespace sap {
5498
6128
  *
5499
6129
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5500
6130
  * event object. The return value of this method indicates whether the default action should be executed.
6131
+ *
6132
+ * @returns Whether or not to prevent the default action
5501
6133
  */
5502
6134
  fireBeforeOpenContextMenu(
5503
6135
  /**
@@ -5522,6 +6154,8 @@ declare namespace sap {
5522
6154
  * @SINCE 1.37.0
5523
6155
  *
5524
6156
  * Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
6157
+ *
6158
+ * @returns Reference to `this` in order to allow method chaining
5525
6159
  */
5526
6160
  fireBusyStateChanged(
5527
6161
  /**
@@ -5536,6 +6170,8 @@ declare namespace sap {
5536
6170
  *
5537
6171
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5538
6172
  * event object. The return value of this method indicates whether the default action should be executed.
6173
+ *
6174
+ * @returns Whether or not to prevent the default action
5539
6175
  */
5540
6176
  fireCellClick(
5541
6177
  /**
@@ -5577,6 +6213,8 @@ declare namespace sap {
5577
6213
  *
5578
6214
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5579
6215
  * event object. The return value of this method indicates whether the default action should be executed.
6216
+ *
6217
+ * @returns Whether or not to prevent the default action
5580
6218
  */
5581
6219
  fireCellContextmenu(
5582
6220
  /**
@@ -5617,6 +6255,8 @@ declare namespace sap {
5617
6255
  *
5618
6256
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5619
6257
  * event object. The return value of this method indicates whether the default action should be executed.
6258
+ *
6259
+ * @returns Whether or not to prevent the default action
5620
6260
  */
5621
6261
  fireColumnFreeze(
5622
6262
  /**
@@ -5634,6 +6274,8 @@ declare namespace sap {
5634
6274
  *
5635
6275
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5636
6276
  * event object. The return value of this method indicates whether the default action should be executed.
6277
+ *
6278
+ * @returns Whether or not to prevent the default action
5637
6279
  */
5638
6280
  fireColumnMove(
5639
6281
  /**
@@ -5655,6 +6297,8 @@ declare namespace sap {
5655
6297
  *
5656
6298
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5657
6299
  * event object. The return value of this method indicates whether the default action should be executed.
6300
+ *
6301
+ * @returns Whether or not to prevent the default action
5658
6302
  */
5659
6303
  fireColumnResize(
5660
6304
  /**
@@ -5676,6 +6320,8 @@ declare namespace sap {
5676
6320
  *
5677
6321
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5678
6322
  * event object. The return value of this method indicates whether the default action should be executed.
6323
+ *
6324
+ * @returns Whether or not to prevent the default action
5679
6325
  */
5680
6326
  fireColumnSelect(
5681
6327
  /**
@@ -5693,6 +6339,8 @@ declare namespace sap {
5693
6339
  *
5694
6340
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5695
6341
  * event object. The return value of this method indicates whether the default action should be executed.
6342
+ *
6343
+ * @returns Whether or not to prevent the default action
5696
6344
  */
5697
6345
  fireColumnVisibility(
5698
6346
  /**
@@ -5713,6 +6361,8 @@ declare namespace sap {
5713
6361
  * @SINCE 1.23.0
5714
6362
  *
5715
6363
  * Fires event {@link #event:customFilter customFilter} to attached listeners.
6364
+ *
6365
+ * @returns Reference to `this` in order to allow method chaining
5716
6366
  */
5717
6367
  fireCustomFilter(
5718
6368
  /**
@@ -5725,6 +6375,8 @@ declare namespace sap {
5725
6375
  *
5726
6376
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5727
6377
  * event object. The return value of this method indicates whether the default action should be executed.
6378
+ *
6379
+ * @returns Whether or not to prevent the default action
5728
6380
  */
5729
6381
  fireFilter(
5730
6382
  /**
@@ -5745,6 +6397,8 @@ declare namespace sap {
5745
6397
  * @SINCE 1.37.0
5746
6398
  *
5747
6399
  * Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
6400
+ *
6401
+ * @returns Reference to `this` in order to allow method chaining
5748
6402
  */
5749
6403
  fireFirstVisibleRowChanged(
5750
6404
  /**
@@ -5757,6 +6411,8 @@ declare namespace sap {
5757
6411
  *
5758
6412
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5759
6413
  * event object. The return value of this method indicates whether the default action should be executed.
6414
+ *
6415
+ * @returns Whether or not to prevent the default action
5760
6416
  */
5761
6417
  fireGroup(
5762
6418
  /**
@@ -5776,6 +6432,8 @@ declare namespace sap {
5776
6432
  *
5777
6433
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5778
6434
  * event object. The return value of this method indicates whether the default action should be executed.
6435
+ *
6436
+ * @returns Whether or not to prevent the default action
5779
6437
  */
5780
6438
  firePaste(
5781
6439
  /**
@@ -5791,6 +6449,8 @@ declare namespace sap {
5791
6449
  ): boolean;
5792
6450
  /**
5793
6451
  * Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
6452
+ *
6453
+ * @returns Reference to `this` in order to allow method chaining
5794
6454
  */
5795
6455
  fireRowSelectionChange(
5796
6456
  /**
@@ -5804,7 +6464,7 @@ declare namespace sap {
5804
6464
  /**
5805
6465
  * binding context of the row which has been clicked so that selection has been changed
5806
6466
  */
5807
- rowContext?: object;
6467
+ rowContext?: sap.ui.model.Context;
5808
6468
  /**
5809
6469
  * array of row indices which selection has been changed (either selected or deselected)
5810
6470
  */
@@ -5824,6 +6484,8 @@ declare namespace sap {
5824
6484
  * @SINCE 1.86
5825
6485
  *
5826
6486
  * Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
6487
+ *
6488
+ * @returns Reference to `this` in order to allow method chaining
5827
6489
  */
5828
6490
  fireRowsUpdated(
5829
6491
  /**
@@ -5836,6 +6498,8 @@ declare namespace sap {
5836
6498
  *
5837
6499
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5838
6500
  * event object. The return value of this method indicates whether the default action should be executed.
6501
+ *
6502
+ * @returns Whether or not to prevent the default action
5839
6503
  */
5840
6504
  fireSort(
5841
6505
  /**
@@ -5886,6 +6550,8 @@ declare namespace sap {
5886
6550
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
5887
6551
  *
5888
6552
  * Default value is `false`.
6553
+ *
6554
+ * @returns Value of property `alternateRowColors`
5889
6555
  */
5890
6556
  getAlternateRowColors(): boolean;
5891
6557
  /**
@@ -5895,6 +6561,8 @@ declare namespace sap {
5895
6561
  getAriaLabelledBy(): sap.ui.core.ID[];
5896
6562
  /**
5897
6563
  * Get the binding object for a specific aggregation/property.
6564
+ *
6565
+ * @returns The binding for the given name
5898
6566
  */
5899
6567
  getBinding(
5900
6568
  /**
@@ -5912,6 +6580,8 @@ declare namespace sap {
5912
6580
  *
5913
6581
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
5914
6582
  * to each individual row of the table's header.
6583
+ *
6584
+ * @returns Value of property `columnHeaderHeight`
5915
6585
  */
5916
6586
  getColumnHeaderHeight(): int;
5917
6587
  /**
@@ -5923,6 +6593,8 @@ declare namespace sap {
5923
6593
  * table can't be guaranteed any more.
5924
6594
  *
5925
6595
  * Default value is `true`.
6596
+ *
6597
+ * @returns Value of property `columnHeaderVisible`
5926
6598
  */
5927
6599
  getColumnHeaderVisible(): boolean;
5928
6600
  /**
@@ -5931,12 +6603,6 @@ declare namespace sap {
5931
6603
  * Columns of the Table
5932
6604
  */
5933
6605
  getColumns(): sap.ui.table.Column[];
5934
- /**
5935
- * In contrast to the function `getFixedColumnCount` which returns the value of the property `fixedColumnCount`,
5936
- * this function returns the actual fixed column count computed based on the column spans of the header,
5937
- * the width of the table and the width of the columns.
5938
- */
5939
- getComputedFixedColumnCount(): int;
5940
6606
  /**
5941
6607
  * Returns the context of a row by its index. Please note that for server-based models like OData, the supplied
5942
6608
  * index might not have been loaded yet. If the context is not available at the client, the binding will
@@ -5945,6 +6611,8 @@ declare namespace sap {
5945
6611
  *
5946
6612
  * For server-based models you should consider to only make this API call when the index is within the currently
5947
6613
  * visible scroll area.
6614
+ *
6615
+ * @returns The context at this index or null
5948
6616
  */
5949
6617
  getContextByIndex(
5950
6618
  /**
@@ -5993,6 +6661,8 @@ declare namespace sap {
5993
6661
  * color in certain themes!)
5994
6662
  *
5995
6663
  * Default value is `true`.
6664
+ *
6665
+ * @returns Value of property `editable`
5996
6666
  */
5997
6667
  getEditable(): boolean;
5998
6668
  /**
@@ -6007,6 +6677,8 @@ declare namespace sap {
6007
6677
  * {@link sap.ui.core.Control#setBusy}.
6008
6678
  *
6009
6679
  * Default value is `false`.
6680
+ *
6681
+ * @returns Value of property `enableBusyIndicator`
6010
6682
  */
6011
6683
  getEnableBusyIndicator(): boolean;
6012
6684
  /**
@@ -6017,6 +6689,8 @@ declare namespace sap {
6017
6689
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
6018
6690
  *
6019
6691
  * Default value is `false`.
6692
+ *
6693
+ * @returns Value of property `enableCellFilter`
6020
6694
  */
6021
6695
  getEnableCellFilter(): boolean;
6022
6696
  /**
@@ -6027,6 +6701,8 @@ declare namespace sap {
6027
6701
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
6028
6702
  *
6029
6703
  * Default value is `false`.
6704
+ *
6705
+ * @returns Value of property `enableColumnFreeze`
6030
6706
  */
6031
6707
  getEnableColumnFreeze(): boolean;
6032
6708
  /**
@@ -6035,6 +6711,8 @@ declare namespace sap {
6035
6711
  * Flag to enable or disable column reordering
6036
6712
  *
6037
6713
  * Default value is `true`.
6714
+ *
6715
+ * @returns Value of property `enableColumnReordering`
6038
6716
  */
6039
6717
  getEnableColumnReordering(): boolean;
6040
6718
  /**
@@ -6046,6 +6724,8 @@ declare namespace sap {
6046
6724
  * button will be rendered for which' press event (customFilter) you can register an event handler.
6047
6725
  *
6048
6726
  * Default value is `false`.
6727
+ *
6728
+ * @returns Value of property `enableCustomFilter`
6049
6729
  */
6050
6730
  getEnableCustomFilter(): boolean;
6051
6731
  /**
@@ -6070,6 +6750,8 @@ declare namespace sap {
6070
6750
  * table is grouped by another column or grouping is disabled.
6071
6751
  *
6072
6752
  * Default value is `false`.
6753
+ *
6754
+ * @returns Value of property `enableGrouping`
6073
6755
  */
6074
6756
  getEnableGrouping(): boolean;
6075
6757
  /**
@@ -6081,6 +6763,8 @@ declare namespace sap {
6081
6763
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
6082
6764
  *
6083
6765
  * Default value is `true`.
6766
+ *
6767
+ * @returns Value of property `enableSelectAll`
6084
6768
  */
6085
6769
  getEnableSelectAll(): boolean;
6086
6770
  /**
@@ -6096,6 +6780,8 @@ declare namespace sap {
6096
6780
  * First visible row.
6097
6781
  *
6098
6782
  * Default value is `0`.
6783
+ *
6784
+ * @returns Value of property `firstVisibleRow`
6099
6785
  */
6100
6786
  getFirstVisibleRow(): int;
6101
6787
  /**
@@ -6110,6 +6796,8 @@ declare namespace sap {
6110
6796
  * client model}.
6111
6797
  *
6112
6798
  * Default value is `0`.
6799
+ *
6800
+ * @returns Value of property `fixedBottomRowCount`
6113
6801
  */
6114
6802
  getFixedBottomRowCount(): int;
6115
6803
  /**
@@ -6124,6 +6812,8 @@ declare namespace sap {
6124
6812
  * able to scroll horizontally.
6125
6813
  *
6126
6814
  * Default value is `0`.
6815
+ *
6816
+ * @returns Value of property `fixedColumnCount`
6127
6817
  */
6128
6818
  getFixedColumnCount(): int;
6129
6819
  /**
@@ -6136,6 +6826,8 @@ declare namespace sap {
6136
6826
  * client model}.
6137
6827
  *
6138
6828
  * Default value is `0`.
6829
+ *
6830
+ * @returns Value of property `fixedRowCount`
6139
6831
  */
6140
6832
  getFixedRowCount(): int;
6141
6833
  /**
@@ -6157,6 +6849,8 @@ declare namespace sap {
6157
6849
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
6158
6850
  *
6159
6851
  * Default value is `5`.
6852
+ *
6853
+ * @returns Value of property `minAutoRowCount`
6160
6854
  */
6161
6855
  getMinAutoRowCount(): int;
6162
6856
  /**
@@ -6168,6 +6862,8 @@ declare namespace sap {
6168
6862
  * option.
6169
6863
  *
6170
6864
  * Default value is `Scrollbar`.
6865
+ *
6866
+ * @returns Value of property `navigationMode`
6171
6867
  */
6172
6868
  getNavigationMode(): sap.ui.table.NavigationMode;
6173
6869
  /**
@@ -6200,6 +6896,8 @@ declare namespace sap {
6200
6896
  * `1` and `2` are possible.
6201
6897
  *
6202
6898
  * Default value is `0`.
6899
+ *
6900
+ * @returns Value of property `rowActionCount`
6203
6901
  */
6204
6902
  getRowActionCount(): int;
6205
6903
  /**
@@ -6226,6 +6924,8 @@ declare namespace sap {
6226
6924
  *
6227
6925
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
6228
6926
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6927
+ *
6928
+ * @returns Value of property `rowHeight`
6229
6929
  */
6230
6930
  getRowHeight(): int;
6231
6931
  /**
@@ -6259,10 +6959,14 @@ declare namespace sap {
6259
6959
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices}
6260
6960
  *
6261
6961
  * Retrieves the lead selection index.
6962
+ *
6963
+ * @returns Currently Selected Index.
6262
6964
  */
6263
6965
  getSelectedIndex(): int;
6264
6966
  /**
6265
6967
  * Zero-based indices of selected items, wrapped in an array. An empty array means "no selection".
6968
+ *
6969
+ * @returns Selected indices
6266
6970
  */
6267
6971
  getSelectedIndices(): int[];
6268
6972
  /**
@@ -6274,6 +6978,8 @@ declare namespace sap {
6274
6978
  * on table type) is enabled, even if `sap.ui.table.SelectionBehavior.RowOnly` is set.
6275
6979
  *
6276
6980
  * Default value is `RowSelector`.
6981
+ *
6982
+ * @returns Value of property `selectionBehavior`
6277
6983
  */
6278
6984
  getSelectionBehavior(): sap.ui.table.SelectionBehavior;
6279
6985
  /**
@@ -6287,6 +6993,8 @@ declare namespace sap {
6287
6993
  * applied to the table, the selection mode is controlled by the plugin.
6288
6994
  *
6289
6995
  * Default value is `MultiToggle`.
6996
+ *
6997
+ * @returns Value of property `selectionMode`
6290
6998
  */
6291
6999
  getSelectionMode(): sap.ui.table.SelectionMode;
6292
7000
  /**
@@ -6296,6 +7004,8 @@ declare namespace sap {
6296
7004
  * header menu. It allows to show or hide columns
6297
7005
  *
6298
7006
  * Default value is `false`.
7007
+ *
7008
+ * @returns Value of property `showColumnVisibilityMenu`
6299
7009
  */
6300
7010
  getShowColumnVisibilityMenu(): boolean;
6301
7011
  /**
@@ -6305,6 +7015,8 @@ declare namespace sap {
6305
7015
  * just show a grid of empty cells
6306
7016
  *
6307
7017
  * Default value is `true`.
7018
+ *
7019
+ * @returns Value of property `showNoData`
6308
7020
  */
6309
7021
  getShowNoData(): boolean;
6310
7022
  /**
@@ -6316,6 +7028,8 @@ declare namespace sap {
6316
7028
  * anymore on the Table content.
6317
7029
  *
6318
7030
  * Default value is `false`.
7031
+ *
7032
+ * @returns Value of property `showOverlay`
6319
7033
  */
6320
7034
  getShowOverlay(): boolean;
6321
7035
  /**
@@ -6324,18 +7038,22 @@ declare namespace sap {
6324
7038
  * {@link sap.ui.table.Column#setSorted} and {@link sap.ui.table.Column#setSortOrder}.
6325
7039
  * See:
6326
7040
  * sap.ui.table.Table#sort
7041
+ *
7042
+ * @returns Array of sorted columns
6327
7043
  */
6328
7044
  getSortedColumns(): sap.ui.table.Column[];
6329
7045
  /**
6330
7046
  * Gets current value of property {@link #getThreshold threshold}.
6331
7047
  *
6332
- * The `threshold` defines how many additional (not yet visible records) shall be pre-fetched to enable
6333
- * smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount` is
6334
- * 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
6335
- * is lower than the `visibleRowCount`, the `visibleRowCount` will be used as the `threshold`. If the value
6336
- * is 0 then the thresholding is disabled.
7048
+ * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
7049
+ * enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
7050
+ * is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
7051
+ * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
7052
+ * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
6337
7053
  *
6338
7054
  * Default value is `100`.
7055
+ *
7056
+ * @returns Value of property `threshold`
6339
7057
  */
6340
7058
  getThreshold(): int;
6341
7059
  /**
@@ -6361,6 +7079,8 @@ declare namespace sap {
6361
7079
  * Number of visible rows of the table.
6362
7080
  *
6363
7081
  * Default value is `10`.
7082
+ *
7083
+ * @returns Value of property `visibleRowCount`
6364
7084
  */
6365
7085
  getVisibleRowCount(): int;
6366
7086
  /**
@@ -6385,6 +7105,8 @@ declare namespace sap {
6385
7105
  * after rendering. The user can change the `visibleRowCount` by dragging a resizer.
6386
7106
  *
6387
7107
  * Default value is `Fixed`.
7108
+ *
7109
+ * @returns Value of property `visibleRowCountMode`
6388
7110
  */
6389
7111
  getVisibleRowCountMode(): sap.ui.table.VisibleRowCountMode;
6390
7112
  /**
@@ -6393,11 +7115,15 @@ declare namespace sap {
6393
7115
  * Width of the Table.
6394
7116
  *
6395
7117
  * Default value is `'auto'`.
7118
+ *
7119
+ * @returns Value of property `width`
6396
7120
  */
6397
7121
  getWidth(): sap.ui.core.CSSSize;
6398
7122
  /**
6399
7123
  * Checks for the provided `sap.ui.table.Column` in the aggregation {@link #getColumns columns}. and returns
6400
7124
  * its index if found or -1 otherwise.
7125
+ *
7126
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6401
7127
  */
6402
7128
  indexOfColumn(
6403
7129
  /**
@@ -6408,6 +7134,8 @@ declare namespace sap {
6408
7134
  /**
6409
7135
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getExtension extension}. and
6410
7136
  * returns its index if found or -1 otherwise.
7137
+ *
7138
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6411
7139
  */
6412
7140
  indexOfExtension(
6413
7141
  /**
@@ -6420,6 +7148,8 @@ declare namespace sap {
6420
7148
  *
6421
7149
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins
6422
7150
  * plugins}. and returns its index if found or -1 otherwise.
7151
+ *
7152
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6423
7153
  */
6424
7154
  indexOfPlugin(
6425
7155
  /**
@@ -6430,6 +7160,8 @@ declare namespace sap {
6430
7160
  /**
6431
7161
  * Checks for the provided `sap.ui.table.Row` in the aggregation {@link #getRows rows}. and returns its
6432
7162
  * index if found or -1 otherwise.
7163
+ *
7164
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6433
7165
  */
6434
7166
  indexOfRow(
6435
7167
  /**
@@ -6439,6 +7171,8 @@ declare namespace sap {
6439
7171
  ): int;
6440
7172
  /**
6441
7173
  * Inserts a column into the aggregation {@link #getColumns columns}.
7174
+ *
7175
+ * @returns Reference to `this` in order to allow method chaining
6442
7176
  */
6443
7177
  insertColumn(
6444
7178
  /**
@@ -6454,6 +7188,8 @@ declare namespace sap {
6454
7188
  ): this;
6455
7189
  /**
6456
7190
  * Inserts a extension into the aggregation {@link #getExtension extension}.
7191
+ *
7192
+ * @returns Reference to `this` in order to allow method chaining
6457
7193
  */
6458
7194
  insertExtension(
6459
7195
  /**
@@ -6471,6 +7207,8 @@ declare namespace sap {
6471
7207
  * @SINCE 1.64
6472
7208
  *
6473
7209
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
7210
+ *
7211
+ * @returns Reference to `this` in order to allow method chaining
6474
7212
  */
6475
7213
  insertPlugin(
6476
7214
  /**
@@ -6486,6 +7224,8 @@ declare namespace sap {
6486
7224
  ): this;
6487
7225
  /**
6488
7226
  * Inserts a row into the aggregation {@link #getRows rows}.
7227
+ *
7228
+ * @returns Reference to `this` in order to allow method chaining
6489
7229
  */
6490
7230
  insertRow(
6491
7231
  /**
@@ -6501,6 +7241,8 @@ declare namespace sap {
6501
7241
  ): this;
6502
7242
  /**
6503
7243
  * Checks whether an index is selected.
7244
+ *
7245
+ * @returns Whether the index is selected
6504
7246
  */
6505
7247
  isIndexSelected(
6506
7248
  /**
@@ -6510,18 +7252,24 @@ declare namespace sap {
6510
7252
  ): boolean;
6511
7253
  /**
6512
7254
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7255
+ *
7256
+ * @returns An array of the removed elements (might be empty)
6513
7257
  */
6514
7258
  removeAllAriaLabelledBy(): sap.ui.core.ID[];
6515
7259
  /**
6516
7260
  * Removes all the controls from the aggregation {@link #getColumns columns}.
6517
7261
  *
6518
7262
  * Additionally, it unregisters them from the hosting UIArea.
7263
+ *
7264
+ * @returns An array of the removed elements (might be empty)
6519
7265
  */
6520
7266
  removeAllColumns(): sap.ui.table.Column[];
6521
7267
  /**
6522
7268
  * Removes all the controls from the aggregation {@link #getExtension extension}.
6523
7269
  *
6524
7270
  * Additionally, it unregisters them from the hosting UIArea.
7271
+ *
7272
+ * @returns An array of the removed elements (might be empty)
6525
7273
  */
6526
7274
  removeAllExtension(): sap.ui.core.Control[];
6527
7275
  /**
@@ -6530,16 +7278,22 @@ declare namespace sap {
6530
7278
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
6531
7279
  *
6532
7280
  * Additionally, it unregisters them from the hosting UIArea.
7281
+ *
7282
+ * @returns An array of the removed elements (might be empty)
6533
7283
  */
6534
7284
  removeAllPlugins(): sap.ui.table.plugins.SelectionPlugin[];
6535
7285
  /**
6536
7286
  * Removes all the controls from the aggregation {@link #getRows rows}.
6537
7287
  *
6538
7288
  * Additionally, it unregisters them from the hosting UIArea.
7289
+ *
7290
+ * @returns An array of the removed elements (might be empty)
6539
7291
  */
6540
7292
  removeAllRows(): sap.ui.table.Row[];
6541
7293
  /**
6542
7294
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7295
+ *
7296
+ * @returns The removed ariaLabelledBy or `null`
6543
7297
  */
6544
7298
  removeAriaLabelledBy(
6545
7299
  /**
@@ -6549,6 +7303,8 @@ declare namespace sap {
6549
7303
  ): sap.ui.core.ID;
6550
7304
  /**
6551
7305
  * Removes a column from the aggregation {@link #getColumns columns}.
7306
+ *
7307
+ * @returns The removed column or `null`
6552
7308
  */
6553
7309
  removeColumn(
6554
7310
  /**
@@ -6558,6 +7314,8 @@ declare namespace sap {
6558
7314
  ): sap.ui.table.Column;
6559
7315
  /**
6560
7316
  * Removes a extension from the aggregation {@link #getExtension extension}.
7317
+ *
7318
+ * @returns The removed extension or `null`
6561
7319
  */
6562
7320
  removeExtension(
6563
7321
  /**
@@ -6569,6 +7327,8 @@ declare namespace sap {
6569
7327
  * @SINCE 1.64
6570
7328
  *
6571
7329
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
7330
+ *
7331
+ * @returns The removed plugin or `null`
6572
7332
  */
6573
7333
  removePlugin(
6574
7334
  /**
@@ -6578,6 +7338,8 @@ declare namespace sap {
6578
7338
  ): sap.ui.table.plugins.SelectionPlugin;
6579
7339
  /**
6580
7340
  * Removes a row from the aggregation {@link #getRows rows}.
7341
+ *
7342
+ * @returns The removed row or `null`
6581
7343
  */
6582
7344
  removeRow(
6583
7345
  /**
@@ -6588,6 +7350,8 @@ declare namespace sap {
6588
7350
  /**
6589
7351
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
6590
7352
  * is removed from the selection.
7353
+ *
7354
+ * @returns Reference to `this` in order to allow method chaining
6591
7355
  */
6592
7356
  removeSelectionInterval(
6593
7357
  /**
@@ -6603,6 +7367,8 @@ declare namespace sap {
6603
7367
  * Adds all rows to the selection. Please note that for server based models like OData the indices which
6604
7368
  * are considered to be selected might not be available at the client yet. Calling getContextByIndex might
6605
7369
  * not return a result but trigger a roundtrip to request this single entity.
7370
+ *
7371
+ * @returns Reference to `this` in order to allow method chaining
6606
7372
  */
6607
7373
  selectAll(): this;
6608
7374
  /**
@@ -6615,6 +7381,8 @@ declare namespace sap {
6615
7381
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6616
7382
  *
6617
7383
  * Default value is `false`.
7384
+ *
7385
+ * @returns Reference to `this` in order to allow method chaining
6618
7386
  */
6619
7387
  setAlternateRowColors(
6620
7388
  /**
@@ -6634,6 +7402,8 @@ declare namespace sap {
6634
7402
  * to each individual row of the table's header.
6635
7403
  *
6636
7404
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7405
+ *
7406
+ * @returns Reference to `this` in order to allow method chaining
6637
7407
  */
6638
7408
  setColumnHeaderHeight(
6639
7409
  /**
@@ -6652,6 +7422,8 @@ declare namespace sap {
6652
7422
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6653
7423
  *
6654
7424
  * Default value is `true`.
7425
+ *
7426
+ * @returns Reference to `this` in order to allow method chaining
6655
7427
  */
6656
7428
  setColumnHeaderVisible(
6657
7429
  /**
@@ -6663,6 +7435,8 @@ declare namespace sap {
6663
7435
  * @SINCE 1.54
6664
7436
  *
6665
7437
  * Sets the aggregated {@link #getContextMenu contextMenu}.
7438
+ *
7439
+ * @returns Reference to `this` in order to allow method chaining
6666
7440
  */
6667
7441
  setContextMenu(
6668
7442
  /**
@@ -6679,6 +7453,8 @@ declare namespace sap {
6679
7453
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6680
7454
  *
6681
7455
  * Default value is `true`.
7456
+ *
7457
+ * @returns Reference to `this` in order to allow method chaining
6682
7458
  */
6683
7459
  setEditable(
6684
7460
  /**
@@ -6700,6 +7476,8 @@ declare namespace sap {
6700
7476
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6701
7477
  *
6702
7478
  * Default value is `false`.
7479
+ *
7480
+ * @returns Reference to `this` in order to allow method chaining
6703
7481
  */
6704
7482
  setEnableBusyIndicator(
6705
7483
  /**
@@ -6717,6 +7495,8 @@ declare namespace sap {
6717
7495
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6718
7496
  *
6719
7497
  * Default value is `false`.
7498
+ *
7499
+ * @returns Reference to `this` in order to allow method chaining
6720
7500
  */
6721
7501
  setEnableCellFilter(
6722
7502
  /**
@@ -6734,6 +7514,8 @@ declare namespace sap {
6734
7514
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6735
7515
  *
6736
7516
  * Default value is `false`.
7517
+ *
7518
+ * @returns Reference to `this` in order to allow method chaining
6737
7519
  */
6738
7520
  setEnableColumnFreeze(
6739
7521
  /**
@@ -6749,6 +7531,8 @@ declare namespace sap {
6749
7531
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6750
7532
  *
6751
7533
  * Default value is `true`.
7534
+ *
7535
+ * @returns Reference to `this` in order to allow method chaining
6752
7536
  */
6753
7537
  setEnableColumnReordering(
6754
7538
  /**
@@ -6767,6 +7551,8 @@ declare namespace sap {
6767
7551
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6768
7552
  *
6769
7553
  * Default value is `false`.
7554
+ *
7555
+ * @returns Reference to `this` in order to allow method chaining
6770
7556
  */
6771
7557
  setEnableCustomFilter(
6772
7558
  /**
@@ -6798,6 +7584,8 @@ declare namespace sap {
6798
7584
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6799
7585
  *
6800
7586
  * Default value is `false`.
7587
+ *
7588
+ * @returns Reference to `this` in order to allow method chaining
6801
7589
  */
6802
7590
  setEnableGrouping(
6803
7591
  /**
@@ -6816,6 +7604,8 @@ declare namespace sap {
6816
7604
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6817
7605
  *
6818
7606
  * Default value is `true`.
7607
+ *
7608
+ * @returns Reference to `this` in order to allow method chaining
6819
7609
  */
6820
7610
  setEnableSelectAll(
6821
7611
  /**
@@ -6831,6 +7621,8 @@ declare namespace sap {
6831
7621
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6832
7622
  *
6833
7623
  * Default value is `0`.
7624
+ *
7625
+ * @returns Reference to `this` in order to allow method chaining
6834
7626
  */
6835
7627
  setFirstVisibleRow(
6836
7628
  /**
@@ -6852,6 +7644,8 @@ declare namespace sap {
6852
7644
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6853
7645
  *
6854
7646
  * Default value is `0`.
7647
+ *
7648
+ * @returns Reference to `this` in order to allow method chaining
6855
7649
  */
6856
7650
  setFixedBottomRowCount(
6857
7651
  /**
@@ -6873,6 +7667,8 @@ declare namespace sap {
6873
7667
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6874
7668
  *
6875
7669
  * Default value is `0`.
7670
+ *
7671
+ * @returns Reference to `this` in order to allow method chaining
6876
7672
  */
6877
7673
  setFixedColumnCount(
6878
7674
  /**
@@ -6892,6 +7688,8 @@ declare namespace sap {
6892
7688
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6893
7689
  *
6894
7690
  * Default value is `0`.
7691
+ *
7692
+ * @returns Reference to `this` in order to allow method chaining
6895
7693
  */
6896
7694
  setFixedRowCount(
6897
7695
  /**
@@ -6901,6 +7699,8 @@ declare namespace sap {
6901
7699
  ): this;
6902
7700
  /**
6903
7701
  * Sets the aggregated {@link #getFooter footer}.
7702
+ *
7703
+ * @returns Reference to `this` in order to allow method chaining
6904
7704
  */
6905
7705
  setFooter(
6906
7706
  /**
@@ -6912,6 +7712,8 @@ declare namespace sap {
6912
7712
  * @EXPERIMENTAL (since 1.28)
6913
7713
  *
6914
7714
  * Sets the associated {@link #getGroupBy groupBy}.
7715
+ *
7716
+ * @returns Reference to `this` in order to allow method chaining
6915
7717
  */
6916
7718
  setGroupBy(
6917
7719
  /**
@@ -6929,6 +7731,8 @@ declare namespace sap {
6929
7731
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6930
7732
  *
6931
7733
  * Default value is `5`.
7734
+ *
7735
+ * @returns Reference to `this` in order to allow method chaining
6932
7736
  */
6933
7737
  setMinAutoRowCount(
6934
7738
  /**
@@ -6947,6 +7751,8 @@ declare namespace sap {
6947
7751
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6948
7752
  *
6949
7753
  * Default value is `Scrollbar`.
7754
+ *
7755
+ * @returns Reference to `this` in order to allow method chaining
6950
7756
  */
6951
7757
  setNavigationMode(
6952
7758
  /**
@@ -6956,6 +7762,8 @@ declare namespace sap {
6956
7762
  ): this;
6957
7763
  /**
6958
7764
  * Sets the aggregated {@link #getNoData noData}.
7765
+ *
7766
+ * @returns Reference to `this` in order to allow method chaining
6959
7767
  */
6960
7768
  setNoData(
6961
7769
  /**
@@ -6974,6 +7782,8 @@ declare namespace sap {
6974
7782
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6975
7783
  *
6976
7784
  * Default value is `0`.
7785
+ *
7786
+ * @returns Reference to `this` in order to allow method chaining
6977
7787
  */
6978
7788
  setRowActionCount(
6979
7789
  /**
@@ -6983,6 +7793,8 @@ declare namespace sap {
6983
7793
  ): this;
6984
7794
  /**
6985
7795
  * Sets the aggregated {@link #getRowActionTemplate rowActionTemplate}.
7796
+ *
7797
+ * @returns Reference to `this` in order to allow method chaining
6986
7798
  */
6987
7799
  setRowActionTemplate(
6988
7800
  /**
@@ -7008,6 +7820,8 @@ declare namespace sap {
7008
7820
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
7009
7821
  *
7010
7822
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7823
+ *
7824
+ * @returns Reference to `this` in order to allow method chaining
7011
7825
  */
7012
7826
  setRowHeight(
7013
7827
  /**
@@ -7017,6 +7831,8 @@ declare namespace sap {
7017
7831
  ): this;
7018
7832
  /**
7019
7833
  * Sets the aggregated {@link #getRowSettingsTemplate rowSettingsTemplate}.
7834
+ *
7835
+ * @returns Reference to `this` in order to allow method chaining
7020
7836
  */
7021
7837
  setRowSettingsTemplate(
7022
7838
  /**
@@ -7026,6 +7842,8 @@ declare namespace sap {
7026
7842
  ): this;
7027
7843
  /**
7028
7844
  * Sets the selected index. The previous selection is removed.
7845
+ *
7846
+ * @returns Reference to `this` in order to allow method chaining
7029
7847
  */
7030
7848
  setSelectedIndex(
7031
7849
  /**
@@ -7044,6 +7862,8 @@ declare namespace sap {
7044
7862
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7045
7863
  *
7046
7864
  * Default value is `RowSelector`.
7865
+ *
7866
+ * @returns Reference to `this` in order to allow method chaining
7047
7867
  */
7048
7868
  setSelectionBehavior(
7049
7869
  /**
@@ -7053,6 +7873,8 @@ declare namespace sap {
7053
7873
  ): this;
7054
7874
  /**
7055
7875
  * Sets the given selection interval as selection. In case of a single selection, only `iIndexTo` is selected.
7876
+ *
7877
+ * @returns Reference to `this` in order to allow method chaining
7056
7878
  */
7057
7879
  setSelectionInterval(
7058
7880
  /**
@@ -7066,6 +7888,8 @@ declare namespace sap {
7066
7888
  ): this;
7067
7889
  /**
7068
7890
  * Sets the selection mode. The current selection is lost.
7891
+ *
7892
+ * @returns Reference to `this` in order to allow method chaining
7069
7893
  */
7070
7894
  setSelectionMode(
7071
7895
  /**
@@ -7082,6 +7906,8 @@ declare namespace sap {
7082
7906
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7083
7907
  *
7084
7908
  * Default value is `false`.
7909
+ *
7910
+ * @returns Reference to `this` in order to allow method chaining
7085
7911
  */
7086
7912
  setShowColumnVisibilityMenu(
7087
7913
  /**
@@ -7098,6 +7924,8 @@ declare namespace sap {
7098
7924
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7099
7925
  *
7100
7926
  * Default value is `true`.
7927
+ *
7928
+ * @returns Reference to `this` in order to allow method chaining
7101
7929
  */
7102
7930
  setShowNoData(
7103
7931
  /**
@@ -7116,6 +7944,8 @@ declare namespace sap {
7116
7944
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7117
7945
  *
7118
7946
  * Default value is `false`.
7947
+ *
7948
+ * @returns Reference to `this` in order to allow method chaining
7119
7949
  */
7120
7950
  setShowOverlay(
7121
7951
  /**
@@ -7126,6 +7956,8 @@ declare namespace sap {
7126
7956
  /**
7127
7957
  * Sets the threshold value, which will be added to all data requests in case the Table is bound against
7128
7958
  * an OData service.
7959
+ *
7960
+ * @returns Reference to `this` in order to allow method chaining
7129
7961
  */
7130
7962
  setThreshold(
7131
7963
  /**
@@ -7137,6 +7969,8 @@ declare namespace sap {
7137
7969
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
7138
7970
  *
7139
7971
  * Sets the aggregated {@link #getTitle title}.
7972
+ *
7973
+ * @returns Reference to `this` in order to allow method chaining
7140
7974
  */
7141
7975
  setTitle(
7142
7976
  /**
@@ -7148,6 +7982,8 @@ declare namespace sap {
7148
7982
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
7149
7983
  *
7150
7984
  * Sets the aggregated {@link #getToolbar toolbar}.
7985
+ *
7986
+ * @returns Reference to `this` in order to allow method chaining
7151
7987
  */
7152
7988
  setToolbar(
7153
7989
  /**
@@ -7163,6 +7999,8 @@ declare namespace sap {
7163
7999
  *
7164
8000
  * Please note that tooltips are not rendered for the table. The tooltip property will be set but it won't
7165
8001
  * effect the DOM.
8002
+ *
8003
+ * @returns Reference to `this` in order to allow method chaining
7166
8004
  */
7167
8005
  setTooltip(
7168
8006
  /**
@@ -7178,6 +8016,8 @@ declare namespace sap {
7178
8016
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7179
8017
  *
7180
8018
  * Default value is `10`.
8019
+ *
8020
+ * @returns Reference to `this` in order to allow method chaining
7181
8021
  */
7182
8022
  setVisibleRowCount(
7183
8023
  /**
@@ -7209,6 +8049,8 @@ declare namespace sap {
7209
8049
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7210
8050
  *
7211
8051
  * Default value is `Fixed`.
8052
+ *
8053
+ * @returns Reference to `this` in order to allow method chaining
7212
8054
  */
7213
8055
  setVisibleRowCountMode(
7214
8056
  /**
@@ -7224,6 +8066,8 @@ declare namespace sap {
7224
8066
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7225
8067
  *
7226
8068
  * Default value is `'auto'`.
8069
+ *
8070
+ * @returns Reference to `this` in order to allow method chaining
7227
8071
  */
7228
8072
  setWidth(
7229
8073
  /**
@@ -7250,10 +8094,14 @@ declare namespace sap {
7250
8094
  ): void;
7251
8095
  /**
7252
8096
  * Unbinds aggregation {@link #getColumns columns} from model data.
8097
+ *
8098
+ * @returns Reference to `this` in order to allow method chaining
7253
8099
  */
7254
8100
  unbindColumns(): this;
7255
8101
  /**
7256
8102
  * Unbinds aggregation {@link #getRows rows} from model data.
8103
+ *
8104
+ * @returns Reference to `this` in order to allow method chaining
7257
8105
  */
7258
8106
  unbindRows(): this;
7259
8107
  }
@@ -7299,6 +8147,8 @@ declare namespace sap {
7299
8147
  * it with the information contained in `oClassInfo`.
7300
8148
  *
7301
8149
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.ManagedObject.extend}.
8150
+ *
8151
+ * @returns Created class / constructor function
7302
8152
  */
7303
8153
  static extend<T extends Record<string, unknown>>(
7304
8154
  /**
@@ -7317,6 +8167,8 @@ declare namespace sap {
7317
8167
  ): Function;
7318
8168
  /**
7319
8169
  * Returns a metadata object for class sap.ui.table.TablePersoController.
8170
+ *
8171
+ * @returns Metadata object describing this class
7320
8172
  */
7321
8173
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
7322
8174
  /**
@@ -7325,6 +8177,8 @@ declare namespace sap {
7325
8177
  * Auto save state
7326
8178
  *
7327
8179
  * Default value is `true`.
8180
+ *
8181
+ * @returns Value of property `autoSave`
7328
8182
  */
7329
8183
  getAutoSave(): boolean;
7330
8184
  /**
@@ -7335,6 +8189,8 @@ declare namespace sap {
7335
8189
  * Table and the Column. Basically this will be more stable than using the auto IDs.
7336
8190
  *
7337
8191
  * Default value is `"persoKey"`.
8192
+ *
8193
+ * @returns Value of property `customDataKey`
7338
8194
  */
7339
8195
  getCustomDataKey(): string;
7340
8196
  /**
@@ -7344,6 +8200,8 @@ declare namespace sap {
7344
8200
  * - getPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7345
8201
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7346
8202
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
8203
+ *
8204
+ * @returns Value of property `persoService`
7347
8205
  */
7348
8206
  getPersoService(): any;
7349
8207
  /**
@@ -7359,6 +8217,8 @@ declare namespace sap {
7359
8217
  *
7360
8218
  *
7361
8219
  * Default value is `Default`.
8220
+ *
8221
+ * @returns Value of property `resetAllMode`
7362
8222
  */
7363
8223
  getResetAllMode(): sap.ui.table.ResetAllMode;
7364
8224
  /**
@@ -7368,6 +8228,8 @@ declare namespace sap {
7368
8228
  *
7369
8229
  *
7370
8230
  * Default value is `true`.
8231
+ *
8232
+ * @returns Value of property `showResetAll`
7371
8233
  */
7372
8234
  getShowResetAll(): boolean;
7373
8235
  /**
@@ -7385,10 +8247,14 @@ declare namespace sap {
7385
8247
  openDialog(mSettings: object): void;
7386
8248
  /**
7387
8249
  * Refresh the personalizations (reloads data from service).
8250
+ *
8251
+ * @returns `jQuery Promise` which is resolved once the refresh is finished
7388
8252
  */
7389
8253
  refresh(): jQuery.Promise;
7390
8254
  /**
7391
8255
  * Saves the current personalization state.
8256
+ *
8257
+ * @returns `jQuery Promise` which is resolved once the save is finished
7392
8258
  */
7393
8259
  savePersonalizations(): jQuery.Promise;
7394
8260
  /**
@@ -7399,6 +8265,8 @@ declare namespace sap {
7399
8265
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7400
8266
  *
7401
8267
  * Default value is `true`.
8268
+ *
8269
+ * @returns Reference to `this` in order to allow method chaining
7402
8270
  */
7403
8271
  setAutoSave(
7404
8272
  /**
@@ -7416,6 +8284,8 @@ declare namespace sap {
7416
8284
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7417
8285
  *
7418
8286
  * Default value is `"persoKey"`.
8287
+ *
8288
+ * @returns Reference to `this` in order to allow method chaining
7419
8289
  */
7420
8290
  setCustomDataKey(
7421
8291
  /**
@@ -7432,6 +8302,8 @@ declare namespace sap {
7432
8302
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7433
8303
  *
7434
8304
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8305
+ *
8306
+ * @returns Reference to `this` in order to allow method chaining
7435
8307
  */
7436
8308
  setPersoService(
7437
8309
  /**
@@ -7454,6 +8326,8 @@ declare namespace sap {
7454
8326
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7455
8327
  *
7456
8328
  * Default value is `Default`.
8329
+ *
8330
+ * @returns Reference to `this` in order to allow method chaining
7457
8331
  */
7458
8332
  setResetAllMode(
7459
8333
  /**
@@ -7470,6 +8344,8 @@ declare namespace sap {
7470
8344
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7471
8345
  *
7472
8346
  * Default value is `true`.
8347
+ *
8348
+ * @returns Reference to `this` in order to allow method chaining
7473
8349
  */
7474
8350
  setShowResetAll(
7475
8351
  /**
@@ -7479,6 +8355,8 @@ declare namespace sap {
7479
8355
  ): this;
7480
8356
  /**
7481
8357
  * Sets the associated {@link #getTable table}.
8358
+ *
8359
+ * @returns Reference to `this` in order to allow method chaining
7482
8360
  */
7483
8361
  setTable(
7484
8362
  /**
@@ -7536,6 +8414,8 @@ declare namespace sap {
7536
8414
  * information contained in `oClassInfo`.
7537
8415
  *
7538
8416
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
8417
+ *
8418
+ * @returns Created class / constructor function
7539
8419
  */
7540
8420
  static extend<T extends Record<string, unknown>>(
7541
8421
  /**
@@ -7554,6 +8434,8 @@ declare namespace sap {
7554
8434
  ): Function;
7555
8435
  /**
7556
8436
  * Returns a metadata object for class sap.ui.table.TreeTable.
8437
+ *
8438
+ * @returns Metadata object describing this class
7557
8439
  */
7558
8440
  static getMetadata(): sap.ui.core.ElementMetadata;
7559
8441
  /**
@@ -7562,6 +8444,8 @@ declare namespace sap {
7562
8444
  *
7563
8445
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
7564
8446
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
8447
+ *
8448
+ * @returns Reference to `this` in order to allow method chaining
7565
8449
  */
7566
8450
  addSelectionInterval(
7567
8451
  /**
@@ -7581,6 +8465,8 @@ declare namespace sap {
7581
8465
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7582
8466
  *
7583
8467
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
8468
+ *
8469
+ * @returns Reference to `this` in order to allow method chaining
7584
8470
  */
7585
8471
  attachToggleOpenState(
7586
8472
  /**
@@ -7605,6 +8491,8 @@ declare namespace sap {
7605
8491
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7606
8492
  *
7607
8493
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
8494
+ *
8495
+ * @returns Reference to `this` in order to allow method chaining
7608
8496
  */
7609
8497
  attachToggleOpenState(
7610
8498
  /**
@@ -7618,6 +8506,8 @@ declare namespace sap {
7618
8506
  ): this;
7619
8507
  /**
7620
8508
  * Collapses one or more rows.
8509
+ *
8510
+ * @returns `this` to allow method chaining
7621
8511
  */
7622
8512
  collapse(
7623
8513
  /**
@@ -7627,6 +8517,8 @@ declare namespace sap {
7627
8517
  ): this;
7628
8518
  /**
7629
8519
  * Collapses all nodes (and lower if collapseRecursive is activated)
8520
+ *
8521
+ * @returns `this` to allow method chaining
7630
8522
  */
7631
8523
  collapseAll(): this;
7632
8524
  /**
@@ -7634,6 +8526,8 @@ declare namespace sap {
7634
8526
  * this `sap.ui.table.TreeTable`.
7635
8527
  *
7636
8528
  * The passed function and listener object must match the ones used for event registration.
8529
+ *
8530
+ * @returns Reference to `this` in order to allow method chaining
7637
8531
  */
7638
8532
  detachToggleOpenState(
7639
8533
  /**
@@ -7647,6 +8541,8 @@ declare namespace sap {
7647
8541
  ): this;
7648
8542
  /**
7649
8543
  * Expands one or more rows.
8544
+ *
8545
+ * @returns `this` to allow method chaining
7650
8546
  */
7651
8547
  expand(
7652
8548
  /**
@@ -7657,10 +8553,12 @@ declare namespace sap {
7657
8553
  /**
7658
8554
  * Expands all nodes starting from the root level to the given level 'iLevel'.
7659
8555
  *
7660
- * Only supported with ODataModel v2, when running in OperationMode.Client or OperationMode.Auto. Fully
7661
- * supported for `sap.ui.model.ClientTreeBinding`, e.g. if you are using a `sap.ui.model.json.JSONModel`.
8556
+ * Only supported with ODataModel v2, when running in OperationMode.Client. Fully supported for `sap.ui.model.ClientTreeBinding`,
8557
+ * e.g. if you are using a `sap.ui.model.json.JSONModel`.
7662
8558
  *
7663
8559
  * Please also see `sap.ui.model.odata.OperationMode`.
8560
+ *
8561
+ * @returns a reference on the TreeTable control, can be used for chaining
7664
8562
  */
7665
8563
  expandToLevel(
7666
8564
  /**
@@ -7670,6 +8568,8 @@ declare namespace sap {
7670
8568
  ): this;
7671
8569
  /**
7672
8570
  * Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
8571
+ *
8572
+ * @returns Reference to `this` in order to allow method chaining
7673
8573
  */
7674
8574
  fireToggleOpenState(
7675
8575
  /**
@@ -7714,6 +8614,8 @@ declare namespace sap {
7714
8614
  *
7715
8615
  *
7716
8616
  * Default value is `true`.
8617
+ *
8618
+ * @returns Value of property `collapseRecursive`
7717
8619
  */
7718
8620
  getCollapseRecursive(): boolean;
7719
8621
  /**
@@ -7746,6 +8648,8 @@ declare namespace sap {
7746
8648
  *
7747
8649
  *
7748
8650
  * Default value is `false`.
8651
+ *
8652
+ * @returns Value of property `expandFirstLevel`
7749
8653
  */
7750
8654
  getExpandFirstLevel(): boolean;
7751
8655
  /**
@@ -7758,6 +8662,8 @@ declare namespace sap {
7758
8662
  * Gets current value of property {@link #getGroupHeaderProperty groupHeaderProperty}.
7759
8663
  *
7760
8664
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
8665
+ *
8666
+ * @returns Value of property `groupHeaderProperty`
7761
8667
  */
7762
8668
  getGroupHeaderProperty(): string;
7763
8669
  /**
@@ -7783,6 +8689,8 @@ declare namespace sap {
7783
8689
  *
7784
8690
  *
7785
8691
  * Default value is `0`.
8692
+ *
8693
+ * @returns Value of property `rootLevel`
7786
8694
  */
7787
8695
  getRootLevel(): int;
7788
8696
  /**
@@ -7791,6 +8699,8 @@ declare namespace sap {
7791
8699
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
7792
8700
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
7793
8701
  * yet loaded" to the client), will not be returned.
8702
+ *
8703
+ * @returns an array containing all selected indices
7794
8704
  */
7795
8705
  getSelectedIndices(): int[];
7796
8706
  /**
@@ -7800,10 +8710,14 @@ declare namespace sap {
7800
8710
  * used to do the grouping for an OData service on the backend and visualize this in a table.
7801
8711
  *
7802
8712
  * Default value is `false`.
8713
+ *
8714
+ * @returns Value of property `useGroupMode`
7803
8715
  */
7804
8716
  getUseGroupMode(): boolean;
7805
8717
  /**
7806
8718
  * Checks whether the row is expanded or collapsed.
8719
+ *
8720
+ * @returns `true` if the row is expanded, `false` if it is collapsed
7807
8721
  */
7808
8722
  isExpanded(
7809
8723
  /**
@@ -7814,6 +8728,8 @@ declare namespace sap {
7814
8728
  /**
7815
8729
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
7816
8730
  * is removed from the selection. Invisible nodes (collapsed child nodes) will not be regarded.
8731
+ *
8732
+ * @returns Reference to `this` in order to allow method chaining
7817
8733
  */
7818
8734
  removeSelectionInterval(
7819
8735
  /**
@@ -7832,6 +8748,8 @@ declare namespace sap {
7832
8748
  * tree are selected. Additional rows or tree nodes that come into view through scrolling or paging are
7833
8749
  * also selected immediately as soon as they get visible. However, `SelectAll` does not retrieve any data
7834
8750
  * from the back end in order to improve performance and reduce the network traffic.
8751
+ *
8752
+ * @returns a reference on the TreeTable control, can be used for chaining
7835
8753
  */
7836
8754
  selectAll(): this;
7837
8755
  /**
@@ -7860,6 +8778,8 @@ declare namespace sap {
7860
8778
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7861
8779
  *
7862
8780
  * Default value is `true`.
8781
+ *
8782
+ * @returns Reference to `this` in order to allow method chaining
7863
8783
  */
7864
8784
  setCollapseRecursive(
7865
8785
  /**
@@ -7873,6 +8793,8 @@ declare namespace sap {
7873
8793
  * The property `enableGrouping` is not supported by the `TreeTable` control.
7874
8794
  * See:
7875
8795
  * sap.ui.table.TreeTable#setUseGroupMode
8796
+ *
8797
+ * @returns Reference to `this` in order to allow method chaining
7876
8798
  */
7877
8799
  setEnableGrouping(bValue: boolean): this;
7878
8800
  /**
@@ -7901,6 +8823,8 @@ declare namespace sap {
7901
8823
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7902
8824
  *
7903
8825
  * Default value is `false`.
8826
+ *
8827
+ * @returns Reference to `this` in order to allow method chaining
7904
8828
  */
7905
8829
  setExpandFirstLevel(
7906
8830
  /**
@@ -7914,6 +8838,8 @@ declare namespace sap {
7914
8838
  * **This property is not supportd for the TreeTable and will be ignored!**
7915
8839
  *
7916
8840
  * Default value is `0`
8841
+ *
8842
+ * @returns `this` to allow method chaining
7917
8843
  */
7918
8844
  setFixedRowCount(
7919
8845
  /**
@@ -7925,6 +8851,8 @@ declare namespace sap {
7925
8851
  * @deprecated (since 1.28)
7926
8852
  *
7927
8853
  * The `groupBy` association is not supported by the `TreeTable` control.
8854
+ *
8855
+ * @returns Reference to `this` in order to allow method chaining
7928
8856
  */
7929
8857
  setGroupBy(oColumn: sap.ui.table.Column | sap.ui.core.ID): this;
7930
8858
  /**
@@ -7933,6 +8861,8 @@ declare namespace sap {
7933
8861
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
7934
8862
  *
7935
8863
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8864
+ *
8865
+ * @returns Reference to `this` in order to allow method chaining
7936
8866
  */
7937
8867
  setGroupHeaderProperty(
7938
8868
  /**
@@ -7965,6 +8895,8 @@ declare namespace sap {
7965
8895
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7966
8896
  *
7967
8897
  * Default value is `0`.
8898
+ *
8899
+ * @returns Reference to `this` in order to allow method chaining
7968
8900
  */
7969
8901
  setRootLevel(
7970
8902
  /**
@@ -7976,6 +8908,8 @@ declare namespace sap {
7976
8908
  * Sets the selected index In a TreeTable you can only select indices, which correspond to the currently
7977
8909
  * visualized tree. Invisible tree nodes (e.g. collapsed child nodes) can not be selected via Index, because
7978
8910
  * they do not correspond to a TreeTable row.
8911
+ *
8912
+ * @returns a reference on the TreeTable control, can be used for chaining
7979
8913
  */
7980
8914
  setSelectedIndex(
7981
8915
  /**
@@ -7987,6 +8921,8 @@ declare namespace sap {
7987
8921
  * Sets the selection of the TreeTable to the given range (including boundaries). Beware: The previous selection
7988
8922
  * will be lost/overridden. If this is not wanted, please use "addSelectionInterval" and "removeSelectionInterval".
7989
8923
  * Please be aware, that the absolute row index only applies to the tree which is visualized by the TreeTable.
8924
+ *
8925
+ * @returns a reference on the TreeTable control, can be used for chaining
7990
8926
  */
7991
8927
  setSelectionInterval(
7992
8928
  /**
@@ -8008,6 +8944,8 @@ declare namespace sap {
8008
8944
  * **Note:** In flat mode the user of the table cannot expand or collapse certain nodes and the hierarchy
8009
8945
  * is not visible to the user. The caller of this function has to ensure to use this option only with non-hierarchical
8010
8946
  * data.
8947
+ *
8948
+ * @returns Reference to `this` in order to allow method chaining
8011
8949
  */
8012
8950
  setUseFlatMode(
8013
8951
  /**
@@ -8024,6 +8962,8 @@ declare namespace sap {
8024
8962
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8025
8963
  *
8026
8964
  * Default value is `false`.
8965
+ *
8966
+ * @returns Reference to `this` in order to allow method chaining
8027
8967
  */
8028
8968
  setUseGroupMode(
8029
8969
  /**