@openui5/ts-types 1.101.0 → 1.102.2

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.101.0
1
+ // For Library Version: 1.102.2
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,7 +1292,8 @@ 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
1299
  * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
@@ -1153,14 +1302,18 @@ declare namespace sap {
1153
1302
  * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
1154
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,6 +2032,8 @@ declare namespace sap {
1817
2032
  * If defined a sum for this column is calculated
1818
2033
  *
1819
2034
  * Default value is `false`.
2035
+ *
2036
+ * @returns Value of property `summed`
1820
2037
  */
1821
2038
  getSummed(): boolean;
1822
2039
  /**
@@ -1825,6 +2042,8 @@ declare namespace sap {
1825
2042
  * If the column is grouped, this formatter is used to format the value in the group header
1826
2043
  *
1827
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
1828
2047
  */
1829
2048
  setGroupHeaderFormatter(
1830
2049
  /**
@@ -1841,6 +2060,8 @@ declare namespace sap {
1841
2060
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1842
2061
  *
1843
2062
  * Default value is `false`.
2063
+ *
2064
+ * @returns Reference to `this` in order to allow method chaining
1844
2065
  */
1845
2066
  setInResult(
1846
2067
  /**
@@ -1855,6 +2076,8 @@ declare namespace sap {
1855
2076
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
1856
2077
  *
1857
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
1858
2081
  */
1859
2082
  setLeadingProperty(
1860
2083
  /**
@@ -1871,6 +2094,8 @@ declare namespace sap {
1871
2094
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1872
2095
  *
1873
2096
  * Default value is `false`.
2097
+ *
2098
+ * @returns Reference to `this` in order to allow method chaining
1874
2099
  */
1875
2100
  setShowIfGrouped(
1876
2101
  /**
@@ -1886,6 +2111,8 @@ declare namespace sap {
1886
2111
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1887
2112
  *
1888
2113
  * Default value is `false`.
2114
+ *
2115
+ * @returns Reference to `this` in order to allow method chaining
1889
2116
  */
1890
2117
  setSummed(
1891
2118
  /**
@@ -1942,6 +2169,8 @@ declare namespace sap {
1942
2169
  * it with the information contained in `oClassInfo`.
1943
2170
  *
1944
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
1945
2174
  */
1946
2175
  static extend<T extends Record<string, unknown>>(
1947
2176
  /**
@@ -1960,6 +2189,8 @@ declare namespace sap {
1960
2189
  ): Function;
1961
2190
  /**
1962
2191
  * Returns a metadata object for class sap.ui.table.AnalyticalColumnMenu.
2192
+ *
2193
+ * @returns Metadata object describing this class
1963
2194
  */
1964
2195
  static getMetadata(): sap.ui.core.ElementMetadata;
1965
2196
  }
@@ -2013,6 +2244,8 @@ declare namespace sap {
2013
2244
  * the information contained in `oClassInfo`.
2014
2245
  *
2015
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
2016
2249
  */
2017
2250
  static extend<T extends Record<string, unknown>>(
2018
2251
  /**
@@ -2031,6 +2264,8 @@ declare namespace sap {
2031
2264
  ): Function;
2032
2265
  /**
2033
2266
  * Returns a metadata object for class sap.ui.table.AnalyticalTable.
2267
+ *
2268
+ * @returns Metadata object describing this class
2034
2269
  */
2035
2270
  static getMetadata(): sap.ui.core.ElementMetadata;
2036
2271
  /**
@@ -2041,6 +2276,8 @@ declare namespace sap {
2041
2276
  *
2042
2277
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
2043
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
2044
2281
  */
2045
2282
  addSelectionInterval(
2046
2283
  /**
@@ -2054,6 +2291,8 @@ declare namespace sap {
2054
2291
  ): this;
2055
2292
  /**
2056
2293
  * Collapses one or more rows.
2294
+ *
2295
+ * @returns Reference to `this` in order to allow method chaining
2057
2296
  */
2058
2297
  collapse(
2059
2298
  /**
@@ -2063,10 +2302,14 @@ declare namespace sap {
2063
2302
  ): this;
2064
2303
  /**
2065
2304
  * Collapses all nodes (and their child nodes if collapseRecursive is activated).
2305
+ *
2306
+ * @returns Reference to `this` in order to allow method chaining
2066
2307
  */
2067
2308
  collapseAll(): this;
2068
2309
  /**
2069
2310
  * Expands one or more rows.
2311
+ *
2312
+ * @returns Reference to `this` in order to allow method chaining
2070
2313
  */
2071
2314
  expand(
2072
2315
  /**
@@ -2080,6 +2323,8 @@ declare namespace sap {
2080
2323
  * Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
2081
2324
  * is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
2082
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
2083
2328
  */
2084
2329
  expandAll(): this;
2085
2330
  /**
@@ -2107,6 +2352,8 @@ declare namespace sap {
2107
2352
  *
2108
2353
  *
2109
2354
  * Default value is `"Bundled"`.
2355
+ *
2356
+ * @returns Value of property `autoExpandMode`
2110
2357
  */
2111
2358
  getAutoExpandMode(): string;
2112
2359
  /**
@@ -2133,6 +2380,8 @@ declare namespace sap {
2133
2380
  *
2134
2381
  *
2135
2382
  * Default value is `true`.
2383
+ *
2384
+ * @returns Value of property `collapseRecursive`
2136
2385
  */
2137
2386
  getCollapseRecursive(): boolean;
2138
2387
  /**
@@ -2140,10 +2389,14 @@ declare namespace sap {
2140
2389
  *
2141
2390
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
2142
2391
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
2392
+ *
2393
+ * @returns Value of property `columnVisibilityMenuSorter`
2143
2394
  */
2144
2395
  getColumnVisibilityMenuSorter(): any;
2145
2396
  /**
2146
2397
  * Returns the context of a row by its index.
2398
+ *
2399
+ * @returns The context of a row by its index
2147
2400
  */
2148
2401
  getContextByIndex(
2149
2402
  /**
@@ -2157,6 +2410,8 @@ declare namespace sap {
2157
2410
  * Gets current value of property {@link #getDirty dirty}.
2158
2411
  *
2159
2412
  * If dirty the content of the Table will be overlayed.
2413
+ *
2414
+ * @returns Value of property `dirty`
2160
2415
  */
2161
2416
  getDirty(): boolean;
2162
2417
  /**
@@ -2195,6 +2450,8 @@ declare namespace sap {
2195
2450
  *
2196
2451
  *
2197
2452
  * Default value is `0`.
2453
+ *
2454
+ * @returns Value of property `numberOfExpandedLevels`
2198
2455
  */
2199
2456
  getNumberOfExpandedLevels(): int;
2200
2457
  /**
@@ -2202,6 +2459,8 @@ declare namespace sap {
2202
2459
  *
2203
2460
  * The lead selection index is, among other things, used to determine the start/end of a selection range,
2204
2461
  * when using Shift-Click to select multiple entries at once.
2462
+ *
2463
+ * @returns Current lead selection index.
2205
2464
  */
2206
2465
  getSelectedIndex(): int;
2207
2466
  /**
@@ -2210,6 +2469,8 @@ declare namespace sap {
2210
2469
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
2211
2470
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
2212
2471
  * yet loaded" to the client), will not be returned.
2472
+ *
2473
+ * @returns an array containing all selected indices
2213
2474
  */
2214
2475
  getSelectedIndices(): int[];
2215
2476
  /**
@@ -2237,14 +2498,20 @@ declare namespace sap {
2237
2498
  *
2238
2499
  *
2239
2500
  * Default value is `false`.
2501
+ *
2502
+ * @returns Value of property `sumOnTop`
2240
2503
  */
2241
2504
  getSumOnTop(): boolean;
2242
2505
  /**
2243
2506
  * Returns the total size of the data entries.
2507
+ *
2508
+ * @returns The total size of the data entries
2244
2509
  */
2245
2510
  getTotalSize(): int;
2246
2511
  /**
2247
2512
  * Checks whether the row is expanded or collapsed.
2513
+ *
2514
+ * @returns `true` if the row is expanded, `false` if it is collapsed
2248
2515
  */
2249
2516
  isExpanded(
2250
2517
  /**
@@ -2254,6 +2521,8 @@ declare namespace sap {
2254
2521
  ): boolean;
2255
2522
  /**
2256
2523
  * Checks if the row at the given index is selected.
2524
+ *
2525
+ * @returns true if the index is selected, false otherwise
2257
2526
  */
2258
2527
  isIndexSelected(
2259
2528
  /**
@@ -2266,6 +2535,8 @@ declare namespace sap {
2266
2535
  * with their absolute row index. Please be aware that the absolute row index only applies to the tree which
2267
2536
  * is visualized by the `AnalyticalTable` control. Invisible nodes (collapsed child nodes) will not be taken
2268
2537
  * into account.
2538
+ *
2539
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2269
2540
  */
2270
2541
  removeSelectionInterval(
2271
2542
  /**
@@ -2297,6 +2568,8 @@ declare namespace sap {
2297
2568
  * on the client are selected. In addition all subsequent rows/tree nodes, which will be paged into view
2298
2569
  * are also immediately selected. However, due to obvious performance/network traffic reasons, the SelectAll
2299
2570
  * function will NOT retrieve any data from the backend.
2571
+ *
2572
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2300
2573
  */
2301
2574
  selectAll(): this;
2302
2575
  /**
@@ -2326,6 +2599,8 @@ declare namespace sap {
2326
2599
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2327
2600
  *
2328
2601
  * Default value is `"Bundled"`.
2602
+ *
2603
+ * @returns Reference to `this` in order to allow method chaining
2329
2604
  */
2330
2605
  setAutoExpandMode(
2331
2606
  /**
@@ -2359,6 +2634,8 @@ declare namespace sap {
2359
2634
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2360
2635
  *
2361
2636
  * Default value is `true`.
2637
+ *
2638
+ * @returns Reference to `this` in order to allow method chaining
2362
2639
  */
2363
2640
  setCollapseRecursive(
2364
2641
  /**
@@ -2373,6 +2650,8 @@ declare namespace sap {
2373
2650
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
2374
2651
  *
2375
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
2376
2655
  */
2377
2656
  setColumnVisibilityMenuSorter(
2378
2657
  /**
@@ -2388,6 +2667,8 @@ declare namespace sap {
2388
2667
  * If dirty the content of the Table will be overlayed.
2389
2668
  *
2390
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
2391
2672
  */
2392
2673
  setDirty(
2393
2674
  /**
@@ -2399,12 +2680,16 @@ declare namespace sap {
2399
2680
  * @deprecated (since 1.28)
2400
2681
  *
2401
2682
  * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
2683
+ *
2684
+ * @returns Reference to `this` in order to allow method chaining
2402
2685
  */
2403
2686
  setEnableGrouping(bValue: boolean): this;
2404
2687
  /**
2405
2688
  * @deprecated (since 1.28)
2406
2689
  *
2407
2690
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
2691
+ *
2692
+ * @returns Reference to `this` in order to allow method chaining
2408
2693
  */
2409
2694
  setGroupBy(oGroupBy: sap.ui.core.ID | sap.ui.table.Column): this;
2410
2695
  /**
@@ -2433,6 +2718,8 @@ declare namespace sap {
2433
2718
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2434
2719
  *
2435
2720
  * Default value is `0`.
2721
+ *
2722
+ * @returns Reference to `this` in order to allow method chaining
2436
2723
  */
2437
2724
  setNumberOfExpandedLevels(
2438
2725
  /**
@@ -2444,6 +2731,8 @@ declare namespace sap {
2444
2731
  * In an `AnalyticalTable` control you can only select indices, which correspond to the currently visualized
2445
2732
  * tree. Invisible nodes (e.g. collapsed child nodes) cannot be selected via Index, because they do not
2446
2733
  * correspond to an `AnalyticalTable` row.
2734
+ *
2735
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2447
2736
  */
2448
2737
  setSelectedIndex(
2449
2738
  /**
@@ -2456,6 +2745,8 @@ declare namespace sap {
2456
2745
  *
2457
2746
  * **Note:** The previous selection will be lost/overridden. If this is not the required behavior, please
2458
2747
  * use `addSelectionInterval` and `removeSelectionInterval`.
2748
+ *
2749
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2459
2750
  */
2460
2751
  setSelectionInterval(
2461
2752
  /**
@@ -2494,6 +2785,8 @@ declare namespace sap {
2494
2785
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2495
2786
  *
2496
2787
  * Default value is `false`.
2788
+ *
2789
+ * @returns Reference to `this` in order to allow method chaining
2497
2790
  */
2498
2791
  setSumOnTop(
2499
2792
  /**
@@ -2548,6 +2841,8 @@ declare namespace sap {
2548
2841
  * contained in `oClassInfo`.
2549
2842
  *
2550
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
2551
2846
  */
2552
2847
  static extend<T extends Record<string, unknown>>(
2553
2848
  /**
@@ -2566,12 +2861,16 @@ declare namespace sap {
2566
2861
  ): Function;
2567
2862
  /**
2568
2863
  * Returns a metadata object for class sap.ui.table.Column.
2864
+ *
2865
+ * @returns Metadata object describing this class
2569
2866
  */
2570
2867
  static getMetadata(): sap.ui.core.ElementMetadata;
2571
2868
  /**
2572
2869
  * @SINCE 1.13.1
2573
2870
  *
2574
2871
  * Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
2872
+ *
2873
+ * @returns Reference to `this` in order to allow method chaining
2575
2874
  */
2576
2875
  addMultiLabel(
2577
2876
  /**
@@ -2589,6 +2888,8 @@ declare namespace sap {
2589
2888
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
2590
2889
  *
2591
2890
  * Fires before the column menu is opened.
2891
+ *
2892
+ * @returns Reference to `this` in order to allow method chaining
2592
2893
  */
2593
2894
  attachColumnMenuOpen(
2594
2895
  /**
@@ -2615,6 +2916,8 @@ declare namespace sap {
2615
2916
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
2616
2917
  *
2617
2918
  * Fires before the column menu is opened.
2919
+ *
2920
+ * @returns Reference to `this` in order to allow method chaining
2618
2921
  */
2619
2922
  attachColumnMenuOpen(
2620
2923
  /**
@@ -2628,20 +2931,28 @@ declare namespace sap {
2628
2931
  ): this;
2629
2932
  /**
2630
2933
  * Destroys the label in the aggregation {@link #getLabel label}.
2934
+ *
2935
+ * @returns Reference to `this` in order to allow method chaining
2631
2936
  */
2632
2937
  destroyLabel(): this;
2633
2938
  /**
2634
2939
  * Destroys the menu in the aggregation {@link #getMenu menu}.
2940
+ *
2941
+ * @returns Reference to `this` in order to allow method chaining
2635
2942
  */
2636
2943
  destroyMenu(): this;
2637
2944
  /**
2638
2945
  * @SINCE 1.13.1
2639
2946
  *
2640
2947
  * Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
2948
+ *
2949
+ * @returns Reference to `this` in order to allow method chaining
2641
2950
  */
2642
2951
  destroyMultiLabels(): this;
2643
2952
  /**
2644
2953
  * Destroys the template in the aggregation {@link #getTemplate template}.
2954
+ *
2955
+ * @returns Reference to `this` in order to allow method chaining
2645
2956
  */
2646
2957
  destroyTemplate(): this;
2647
2958
  /**
@@ -2651,6 +2962,8 @@ declare namespace sap {
2651
2962
  * `sap.ui.table.Column`.
2652
2963
  *
2653
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
2654
2967
  */
2655
2968
  detachColumnMenuOpen(
2656
2969
  /**
@@ -2669,6 +2982,8 @@ declare namespace sap {
2669
2982
  *
2670
2983
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
2671
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
2672
2987
  */
2673
2988
  fireColumnMenuOpen(
2674
2989
  /**
@@ -2693,6 +3008,8 @@ declare namespace sap {
2693
3008
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
2694
3009
  *
2695
3010
  * Default value is `false`.
3011
+ *
3012
+ * @returns Value of property `autoResizable`
2696
3013
  */
2697
3014
  getAutoResizable(): boolean;
2698
3015
  /**
@@ -2700,6 +3017,8 @@ declare namespace sap {
2700
3017
  *
2701
3018
  * If this property is set, the default filter operator of the column is overridden. By default `Contains`
2702
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`
2703
3022
  */
2704
3023
  getDefaultFilterOperator(): string;
2705
3024
  /**
@@ -2710,12 +3029,16 @@ declare namespace sap {
2710
3029
  * sap.ui.table.Table#filter}.
2711
3030
  *
2712
3031
  * Default value is `false`.
3032
+ *
3033
+ * @returns Value of property `filtered`
2713
3034
  */
2714
3035
  getFiltered(): boolean;
2715
3036
  /**
2716
3037
  * Gets current value of property {@link #getFilterOperator filterOperator}.
2717
3038
  *
2718
3039
  * Filter operator to use when filtering this column.
3040
+ *
3041
+ * @returns Value of property `filterOperator`
2719
3042
  */
2720
3043
  getFilterOperator(): string;
2721
3044
  /**
@@ -2728,6 +3051,8 @@ declare namespace sap {
2728
3051
  *
2729
3052
  * A column menu entry for filtering can only be generated if the `filterProperty` is set. The default menu
2730
3053
  * entry is a text input field.
3054
+ *
3055
+ * @returns Value of property `filterProperty`
2731
3056
  */
2732
3057
  getFilterProperty(): string;
2733
3058
  /**
@@ -2742,6 +3067,8 @@ declare namespace sap {
2742
3067
  * \{\} \}"`. Here the escaping is mandatory to avoid handling by the binding parser. As an alternative,
2743
3068
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
2744
3069
  * #setFilterType} instead.
3070
+ *
3071
+ * @returns Value of property `filterType`
2745
3072
  */
2746
3073
  getFilterType(): any;
2747
3074
  /**
@@ -2763,6 +3090,9 @@ declare namespace sap {
2763
3090
  * some..thing between
2764
3091
  * 50..100 between
2765
3092
  * ```
3093
+ *
3094
+ *
3095
+ * @returns Value of property `filterValue`
2766
3096
  */
2767
3097
  getFilterValue(): string;
2768
3098
  /**
@@ -2777,6 +3107,8 @@ declare namespace sap {
2777
3107
  * of the table.
2778
3108
  *
2779
3109
  * Default value is `true`.
3110
+ *
3111
+ * @returns Value of property `flexible`
2780
3112
  */
2781
3113
  getFlexible(): boolean;
2782
3114
  /**
@@ -2785,6 +3117,8 @@ declare namespace sap {
2785
3117
  * Indicates if the column is grouped.
2786
3118
  *
2787
3119
  * Default value is `false`.
3120
+ *
3121
+ * @returns Value of property `grouped`
2788
3122
  */
2789
3123
  getGrouped(): boolean;
2790
3124
  /**
@@ -2794,6 +3128,8 @@ declare namespace sap {
2794
3128
  * alignment. You have to set the text align directly on the template.
2795
3129
  *
2796
3130
  * Default value is `Begin`.
3131
+ *
3132
+ * @returns Value of property `hAlign`
2797
3133
  */
2798
3134
  getHAlign(): sap.ui.core.HorizontalAlign;
2799
3135
  /**
@@ -2807,6 +3143,8 @@ declare namespace sap {
2807
3143
  * which are part of the header with the greatest span will be set to fixed.
2808
3144
  *
2809
3145
  * Default value is `1`.
3146
+ *
3147
+ * @returns Value of property `headerSpan`
2810
3148
  */
2811
3149
  getHeaderSpan(): any;
2812
3150
  /**
@@ -2838,6 +3176,8 @@ declare namespace sap {
2838
3176
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
2839
3177
  *
2840
3178
  * Default value is `0`.
3179
+ *
3180
+ * @returns Value of property `minWidth`
2841
3181
  */
2842
3182
  getMinWidth(): int;
2843
3183
  /**
@@ -2857,6 +3197,8 @@ declare namespace sap {
2857
3197
  * The name of the column which is used for the text representation of this column, for example, in menus.
2858
3198
  * If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
2859
3199
  * as a fallback option.
3200
+ *
3201
+ * @returns Value of property `name`
2860
3202
  */
2861
3203
  getName(): string;
2862
3204
  /**
@@ -2866,6 +3208,8 @@ declare namespace sap {
2866
3208
  * (SHIFT + Left/Right Arrow keys)
2867
3209
  *
2868
3210
  * Default value is `true`.
3211
+ *
3212
+ * @returns Value of property `resizable`
2869
3213
  */
2870
3214
  getResizable(): boolean;
2871
3215
  /**
@@ -2876,6 +3220,8 @@ declare namespace sap {
2876
3220
  * Defines if the filter menu entry is displayed
2877
3221
  *
2878
3222
  * Default value is `true`.
3223
+ *
3224
+ * @returns Value of property `showFilterMenuEntry`
2879
3225
  */
2880
3226
  getShowFilterMenuEntry(): boolean;
2881
3227
  /**
@@ -2886,6 +3232,8 @@ declare namespace sap {
2886
3232
  * Defines if the sort menu entries are displayed
2887
3233
  *
2888
3234
  * Default value is `true`.
3235
+ *
3236
+ * @returns Value of property `showSortMenuEntry`
2889
3237
  */
2890
3238
  getShowSortMenuEntry(): boolean;
2891
3239
  /**
@@ -2895,6 +3243,8 @@ declare namespace sap {
2895
3243
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2896
3244
  *
2897
3245
  * Default value is `false`.
3246
+ *
3247
+ * @returns Value of property `sorted`
2898
3248
  */
2899
3249
  getSorted(): boolean;
2900
3250
  /**
@@ -2904,6 +3254,8 @@ declare namespace sap {
2904
3254
  * rendered if the property `sorted` is `true`
2905
3255
  *
2906
3256
  * Default value is `Ascending`.
3257
+ *
3258
+ * @returns Value of property `sortOrder`
2907
3259
  */
2908
3260
  getSortOrder(): sap.ui.table.SortOrder;
2909
3261
  /**
@@ -2915,6 +3267,8 @@ declare namespace sap {
2915
3267
  * displayed in the same column, only one of the two can be defined as `sortProperty`.
2916
3268
  *
2917
3269
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
3270
+ *
3271
+ * @returns Value of property `sortProperty`
2918
3272
  */
2919
3273
  getSortProperty(): string;
2920
3274
  /**
@@ -2933,6 +3287,8 @@ declare namespace sap {
2933
3287
  getTemplate(): sap.ui.core.Control | string;
2934
3288
  /**
2935
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
2936
3292
  */
2937
3293
  getTemplateClone(
2938
3294
  /**
@@ -2946,6 +3302,8 @@ declare namespace sap {
2946
3302
  * Invisible controls are not rendered.
2947
3303
  *
2948
3304
  * Default value is `true`.
3305
+ *
3306
+ * @returns Value of property `visible`
2949
3307
  */
2950
3308
  getVisible(): boolean;
2951
3309
  /**
@@ -2956,6 +3314,8 @@ declare namespace sap {
2956
3314
  * than 48px. This property can be changed by the user or by the application configuration/personalization.
2957
3315
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
2958
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`
2959
3319
  */
2960
3320
  getWidth(): sap.ui.core.CSSSize;
2961
3321
  /**
@@ -2963,6 +3323,8 @@ declare namespace sap {
2963
3323
  *
2964
3324
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
2965
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
2966
3328
  */
2967
3329
  indexOfMultiLabel(
2968
3330
  /**
@@ -2974,6 +3336,8 @@ declare namespace sap {
2974
3336
  * @SINCE 1.13.1
2975
3337
  *
2976
3338
  * Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
3339
+ *
3340
+ * @returns Reference to `this` in order to allow method chaining
2977
3341
  */
2978
3342
  insertMultiLabel(
2979
3343
  /**
@@ -2993,12 +3357,16 @@ declare namespace sap {
2993
3357
  * Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
2994
3358
  *
2995
3359
  * Additionally, it unregisters them from the hosting UIArea.
3360
+ *
3361
+ * @returns An array of the removed elements (might be empty)
2996
3362
  */
2997
3363
  removeAllMultiLabels(): sap.ui.core.Control[];
2998
3364
  /**
2999
3365
  * @SINCE 1.13.1
3000
3366
  *
3001
3367
  * Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
3368
+ *
3369
+ * @returns The removed multiLabel or `null`
3002
3370
  */
3003
3371
  removeMultiLabel(
3004
3372
  /**
@@ -3020,6 +3388,8 @@ declare namespace sap {
3020
3388
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3021
3389
  *
3022
3390
  * Default value is `false`.
3391
+ *
3392
+ * @returns Reference to `this` in order to allow method chaining
3023
3393
  */
3024
3394
  setAutoResizable(
3025
3395
  /**
@@ -3034,6 +3404,8 @@ declare namespace sap {
3034
3404
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
3035
3405
  *
3036
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
3037
3409
  */
3038
3410
  setDefaultFilterOperator(
3039
3411
  /**
@@ -3051,6 +3423,8 @@ declare namespace sap {
3051
3423
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3052
3424
  *
3053
3425
  * Default value is `false`.
3426
+ *
3427
+ * @returns Reference to `this` in order to allow method chaining
3054
3428
  */
3055
3429
  setFiltered(
3056
3430
  /**
@@ -3064,6 +3438,8 @@ declare namespace sap {
3064
3438
  * Filter operator to use when filtering this column.
3065
3439
  *
3066
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
3067
3443
  */
3068
3444
  setFilterOperator(
3069
3445
  /**
@@ -3083,6 +3459,8 @@ declare namespace sap {
3083
3459
  * entry is a text input field.
3084
3460
  *
3085
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
3086
3464
  */
3087
3465
  setFilterProperty(
3088
3466
  /**
@@ -3094,6 +3472,8 @@ declare namespace sap {
3094
3472
  * The filter type can be the class name of a type, an expression similar to the binding syntax, or a function.
3095
3473
  * A function receives the entered filter value as a parameter and should return the appropriate value for
3096
3474
  * the filter expression.
3475
+ *
3476
+ * @returns Reference to `this` in order to allow method chaining
3097
3477
  */
3098
3478
  setFilterType(
3099
3479
  /**
@@ -3123,6 +3503,8 @@ declare namespace sap {
3123
3503
  *
3124
3504
  *
3125
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
3126
3508
  */
3127
3509
  setFilterValue(
3128
3510
  /**
@@ -3144,6 +3526,8 @@ declare namespace sap {
3144
3526
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3145
3527
  *
3146
3528
  * Default value is `true`.
3529
+ *
3530
+ * @returns Reference to `this` in order to allow method chaining
3147
3531
  */
3148
3532
  setFlexible(
3149
3533
  /**
@@ -3159,6 +3543,8 @@ declare namespace sap {
3159
3543
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3160
3544
  *
3161
3545
  * Default value is `false`.
3546
+ *
3547
+ * @returns Reference to `this` in order to allow method chaining
3162
3548
  */
3163
3549
  setGrouped(
3164
3550
  /**
@@ -3175,6 +3561,8 @@ declare namespace sap {
3175
3561
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3176
3562
  *
3177
3563
  * Default value is `Begin`.
3564
+ *
3565
+ * @returns Reference to `this` in order to allow method chaining
3178
3566
  */
3179
3567
  setHAlign(
3180
3568
  /**
@@ -3195,6 +3583,8 @@ declare namespace sap {
3195
3583
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3196
3584
  *
3197
3585
  * Default value is `1`.
3586
+ *
3587
+ * @returns Reference to `this` in order to allow method chaining
3198
3588
  */
3199
3589
  setHeaderSpan(
3200
3590
  /**
@@ -3204,6 +3594,8 @@ declare namespace sap {
3204
3594
  ): this;
3205
3595
  /**
3206
3596
  * Sets the aggregated {@link #getLabel label}.
3597
+ *
3598
+ * @returns Reference to `this` in order to allow method chaining
3207
3599
  */
3208
3600
  setLabel(
3209
3601
  /**
@@ -3213,6 +3605,8 @@ declare namespace sap {
3213
3605
  ): this;
3214
3606
  /**
3215
3607
  * Sets the aggregated {@link #getMenu menu}.
3608
+ *
3609
+ * @returns Reference to `this` in order to allow method chaining
3216
3610
  */
3217
3611
  setMenu(
3218
3612
  /**
@@ -3233,6 +3627,8 @@ declare namespace sap {
3233
3627
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3234
3628
  *
3235
3629
  * Default value is `0`.
3630
+ *
3631
+ * @returns Reference to `this` in order to allow method chaining
3236
3632
  */
3237
3633
  setMinWidth(
3238
3634
  /**
@@ -3250,6 +3646,8 @@ declare namespace sap {
3250
3646
  * as a fallback option.
3251
3647
  *
3252
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
3253
3651
  */
3254
3652
  setName(
3255
3653
  /**
@@ -3266,6 +3664,8 @@ declare namespace sap {
3266
3664
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3267
3665
  *
3268
3666
  * Default value is `true`.
3667
+ *
3668
+ * @returns Reference to `this` in order to allow method chaining
3269
3669
  */
3270
3670
  setResizable(
3271
3671
  /**
@@ -3283,6 +3683,8 @@ declare namespace sap {
3283
3683
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3284
3684
  *
3285
3685
  * Default value is `true`.
3686
+ *
3687
+ * @returns Reference to `this` in order to allow method chaining
3286
3688
  */
3287
3689
  setShowFilterMenuEntry(
3288
3690
  /**
@@ -3300,6 +3702,8 @@ declare namespace sap {
3300
3702
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3301
3703
  *
3302
3704
  * Default value is `true`.
3705
+ *
3706
+ * @returns Reference to `this` in order to allow method chaining
3303
3707
  */
3304
3708
  setShowSortMenuEntry(
3305
3709
  /**
@@ -3316,6 +3720,8 @@ declare namespace sap {
3316
3720
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3317
3721
  *
3318
3722
  * Default value is `false`.
3723
+ *
3724
+ * @returns Reference to `this` in order to allow method chaining
3319
3725
  */
3320
3726
  setSorted(
3321
3727
  /**
@@ -3332,6 +3738,8 @@ declare namespace sap {
3332
3738
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3333
3739
  *
3334
3740
  * Default value is `Ascending`.
3741
+ *
3742
+ * @returns Reference to `this` in order to allow method chaining
3335
3743
  */
3336
3744
  setSortOrder(
3337
3745
  /**
@@ -3350,6 +3758,8 @@ declare namespace sap {
3350
3758
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
3351
3759
  *
3352
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
3353
3763
  */
3354
3764
  setSortProperty(
3355
3765
  /**
@@ -3359,6 +3769,8 @@ declare namespace sap {
3359
3769
  ): this;
3360
3770
  /**
3361
3771
  * Sets the aggregated {@link #getTemplate template}.
3772
+ *
3773
+ * @returns Reference to `this` in order to allow method chaining
3362
3774
  */
3363
3775
  setTemplate(
3364
3776
  /**
@@ -3374,6 +3786,8 @@ declare namespace sap {
3374
3786
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3375
3787
  *
3376
3788
  * Default value is `true`.
3789
+ *
3790
+ * @returns Reference to `this` in order to allow method chaining
3377
3791
  */
3378
3792
  setVisible(
3379
3793
  /**
@@ -3391,6 +3805,8 @@ declare namespace sap {
3391
3805
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
3392
3806
  *
3393
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
3394
3810
  */
3395
3811
  setWidth(
3396
3812
  /**
@@ -3400,12 +3816,16 @@ declare namespace sap {
3400
3816
  ): this;
3401
3817
  /**
3402
3818
  * Returns whether the column should be rendered.
3819
+ *
3820
+ * @returns Returns `true`, if the column should be rendered
3403
3821
  */
3404
3822
  shouldRender(): boolean;
3405
3823
  /**
3406
3824
  * @deprecated (since 1.5.1) - Please use the function "sap.ui.Table.prototype.sort".
3407
3825
  *
3408
3826
  * Sorts the current column ascending or descending.
3827
+ *
3828
+ * @returns Reference to `this` in order to allow method chaining
3409
3829
  */
3410
3830
  sort(
3411
3831
  /**
@@ -3474,6 +3894,8 @@ declare namespace sap {
3474
3894
  * information contained in `oClassInfo`.
3475
3895
  *
3476
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
3477
3899
  */
3478
3900
  static extend<T extends Record<string, unknown>>(
3479
3901
  /**
@@ -3492,6 +3914,8 @@ declare namespace sap {
3492
3914
  ): Function;
3493
3915
  /**
3494
3916
  * Returns a metadata object for class sap.ui.table.ColumnMenu.
3917
+ *
3918
+ * @returns Metadata object describing this class
3495
3919
  */
3496
3920
  static getMetadata(): sap.ui.core.ElementMetadata;
3497
3921
  }
@@ -3535,6 +3959,8 @@ declare namespace sap {
3535
3959
  * contained in `oClassInfo`.
3536
3960
  *
3537
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
3538
3964
  */
3539
3965
  static extend<T extends Record<string, unknown>>(
3540
3966
  /**
@@ -3553,10 +3979,14 @@ declare namespace sap {
3553
3979
  ): Function;
3554
3980
  /**
3555
3981
  * Returns a metadata object for class sap.ui.table.Row.
3982
+ *
3983
+ * @returns Metadata object describing this class
3556
3984
  */
3557
3985
  static getMetadata(): sap.ui.core.ElementMetadata;
3558
3986
  /**
3559
3987
  * Adds some cell to the aggregation {@link #getCells cells}.
3988
+ *
3989
+ * @returns Reference to `this` in order to allow method chaining
3560
3990
  */
3561
3991
  addCell(
3562
3992
  /**
@@ -3566,6 +3996,8 @@ declare namespace sap {
3566
3996
  ): this;
3567
3997
  /**
3568
3998
  * Destroys all the cells in the aggregation {@link #getCells cells}.
3999
+ *
4000
+ * @returns Reference to `this` in order to allow method chaining
3569
4001
  */
3570
4002
  destroyCells(): this;
3571
4003
  /**
@@ -3579,11 +4011,15 @@ declare namespace sap {
3579
4011
  /**
3580
4012
  * Returns the index of the row in the table or -1 if not added to a table. This function considers the
3581
4013
  * scroll position of the table and also takes fixed rows and fixed bottom rows into account.
4014
+ *
4015
+ * @returns index of the row (considers scroll position and fixed rows)
3582
4016
  */
3583
4017
  getIndex(): int;
3584
4018
  /**
3585
4019
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCells cells}. and returns
3586
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
3587
4023
  */
3588
4024
  indexOfCell(
3589
4025
  /**
@@ -3593,6 +4029,8 @@ declare namespace sap {
3593
4029
  ): int;
3594
4030
  /**
3595
4031
  * Inserts a cell into the aggregation {@link #getCells cells}.
4032
+ *
4033
+ * @returns Reference to `this` in order to allow method chaining
3596
4034
  */
3597
4035
  insertCell(
3598
4036
  /**
@@ -3610,10 +4048,14 @@ declare namespace sap {
3610
4048
  * Removes all the controls from the aggregation {@link #getCells cells}.
3611
4049
  *
3612
4050
  * Additionally, it unregisters them from the hosting UIArea.
4051
+ *
4052
+ * @returns An array of the removed elements (might be empty)
3613
4053
  */
3614
4054
  removeAllCells(): sap.ui.core.Control[];
3615
4055
  /**
3616
4056
  * Removes a cell from the aggregation {@link #getCells cells}.
4057
+ *
4058
+ * @returns The removed cell or `null`
3617
4059
  */
3618
4060
  removeCell(
3619
4061
  /**
@@ -3666,6 +4108,8 @@ declare namespace sap {
3666
4108
  * information contained in `oClassInfo`.
3667
4109
  *
3668
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
3669
4113
  */
3670
4114
  static extend<T extends Record<string, unknown>>(
3671
4115
  /**
@@ -3684,10 +4128,14 @@ declare namespace sap {
3684
4128
  ): Function;
3685
4129
  /**
3686
4130
  * Returns a metadata object for class sap.ui.table.RowAction.
4131
+ *
4132
+ * @returns Metadata object describing this class
3687
4133
  */
3688
4134
  static getMetadata(): sap.ui.core.ElementMetadata;
3689
4135
  /**
3690
4136
  * Adds some item to the aggregation {@link #getItems items}.
4137
+ *
4138
+ * @returns Reference to `this` in order to allow method chaining
3691
4139
  */
3692
4140
  addItem(
3693
4141
  /**
@@ -3697,6 +4145,8 @@ declare namespace sap {
3697
4145
  ): this;
3698
4146
  /**
3699
4147
  * Destroys all the items in the aggregation {@link #getItems items}.
4148
+ *
4149
+ * @returns Reference to `this` in order to allow method chaining
3700
4150
  */
3701
4151
  destroyItems(): this;
3702
4152
  /**
@@ -3711,11 +4161,15 @@ declare namespace sap {
3711
4161
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3712
4162
  *
3713
4163
  * Default value is `true`.
4164
+ *
4165
+ * @returns Value of property `visible`
3714
4166
  */
3715
4167
  getVisible(): boolean;
3716
4168
  /**
3717
4169
  * Checks for the provided `sap.ui.table.RowActionItem` in the aggregation {@link #getItems items}. and
3718
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
3719
4173
  */
3720
4174
  indexOfItem(
3721
4175
  /**
@@ -3725,6 +4179,8 @@ declare namespace sap {
3725
4179
  ): int;
3726
4180
  /**
3727
4181
  * Inserts a item into the aggregation {@link #getItems items}.
4182
+ *
4183
+ * @returns Reference to `this` in order to allow method chaining
3728
4184
  */
3729
4185
  insertItem(
3730
4186
  /**
@@ -3742,10 +4198,14 @@ declare namespace sap {
3742
4198
  * Removes all the controls from the aggregation {@link #getItems items}.
3743
4199
  *
3744
4200
  * Additionally, it unregisters them from the hosting UIArea.
4201
+ *
4202
+ * @returns An array of the removed elements (might be empty)
3745
4203
  */
3746
4204
  removeAllItems(): sap.ui.table.RowActionItem[];
3747
4205
  /**
3748
4206
  * Removes a item from the aggregation {@link #getItems items}.
4207
+ *
4208
+ * @returns The removed item or `null`
3749
4209
  */
3750
4210
  removeItem(
3751
4211
  /**
@@ -3761,6 +4221,8 @@ declare namespace sap {
3761
4221
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3762
4222
  *
3763
4223
  * Default value is `true`.
4224
+ *
4225
+ * @returns Reference to `this` in order to allow method chaining
3764
4226
  */
3765
4227
  setVisible(
3766
4228
  /**
@@ -3812,6 +4274,8 @@ declare namespace sap {
3812
4274
  * the information contained in `oClassInfo`.
3813
4275
  *
3814
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
3815
4279
  */
3816
4280
  static extend<T extends Record<string, unknown>>(
3817
4281
  /**
@@ -3830,6 +4294,8 @@ declare namespace sap {
3830
4294
  ): Function;
3831
4295
  /**
3832
4296
  * Returns a metadata object for class sap.ui.table.RowActionItem.
4297
+ *
4298
+ * @returns Metadata object describing this class
3833
4299
  */
3834
4300
  static getMetadata(): sap.ui.core.ElementMetadata;
3835
4301
  /**
@@ -3839,6 +4305,8 @@ declare namespace sap {
3839
4305
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3840
4306
  *
3841
4307
  * The `press` is fired when the user triggers the corresponding action.
4308
+ *
4309
+ * @returns Reference to `this` in order to allow method chaining
3842
4310
  */
3843
4311
  attachPress(
3844
4312
  /**
@@ -3862,6 +4330,8 @@ declare namespace sap {
3862
4330
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3863
4331
  *
3864
4332
  * The `press` is fired when the user triggers the corresponding action.
4333
+ *
4334
+ * @returns Reference to `this` in order to allow method chaining
3865
4335
  */
3866
4336
  attachPress(
3867
4337
  /**
@@ -3877,6 +4347,8 @@ declare namespace sap {
3877
4347
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.ui.table.RowActionItem`.
3878
4348
  *
3879
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
3880
4352
  */
3881
4353
  detachPress(
3882
4354
  /**
@@ -3890,6 +4362,8 @@ declare namespace sap {
3890
4362
  ): this;
3891
4363
  /**
3892
4364
  * Fires event {@link #event:press press} to attached listeners.
4365
+ *
4366
+ * @returns Reference to `this` in order to allow method chaining
3893
4367
  */
3894
4368
  firePress(
3895
4369
  /**
@@ -3901,6 +4375,8 @@ declare namespace sap {
3901
4375
  * Gets current value of property {@link #getIcon icon}.
3902
4376
  *
3903
4377
  * The icon of the item.
4378
+ *
4379
+ * @returns Value of property `icon`
3904
4380
  */
3905
4381
  getIcon(): sap.ui.core.URI;
3906
4382
  /**
@@ -3909,6 +4385,8 @@ declare namespace sap {
3909
4385
  * The text of the item. It is used as tooltip and for accessibility purposes.
3910
4386
  *
3911
4387
  * Default value is `empty string`.
4388
+ *
4389
+ * @returns Value of property `text`
3912
4390
  */
3913
4391
  getText(): string;
3914
4392
  /**
@@ -3918,6 +4396,8 @@ declare namespace sap {
3918
4396
  * an icon or text is set explicitly this setting is used.
3919
4397
  *
3920
4398
  * Default value is `Custom`.
4399
+ *
4400
+ * @returns Value of property `type`
3921
4401
  */
3922
4402
  getType(): sap.ui.table.RowActionType;
3923
4403
  /**
@@ -3926,6 +4406,8 @@ declare namespace sap {
3926
4406
  * Whether the item should be visible on the screen.
3927
4407
  *
3928
4408
  * Default value is `true`.
4409
+ *
4410
+ * @returns Value of property `visible`
3929
4411
  */
3930
4412
  getVisible(): boolean;
3931
4413
  /**
@@ -3934,6 +4416,8 @@ declare namespace sap {
3934
4416
  * The icon of the item.
3935
4417
  *
3936
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
3937
4421
  */
3938
4422
  setIcon(
3939
4423
  /**
@@ -3949,6 +4433,8 @@ declare namespace sap {
3949
4433
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3950
4434
  *
3951
4435
  * Default value is `empty string`.
4436
+ *
4437
+ * @returns Reference to `this` in order to allow method chaining
3952
4438
  */
3953
4439
  setText(
3954
4440
  /**
@@ -3965,6 +4451,8 @@ declare namespace sap {
3965
4451
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3966
4452
  *
3967
4453
  * Default value is `Custom`.
4454
+ *
4455
+ * @returns Reference to `this` in order to allow method chaining
3968
4456
  */
3969
4457
  setType(
3970
4458
  /**
@@ -3980,6 +4468,8 @@ declare namespace sap {
3980
4468
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3981
4469
  *
3982
4470
  * Default value is `true`.
4471
+ *
4472
+ * @returns Reference to `this` in order to allow method chaining
3983
4473
  */
3984
4474
  setVisible(
3985
4475
  /**
@@ -4031,6 +4521,8 @@ declare namespace sap {
4031
4521
  * the information contained in `oClassInfo`.
4032
4522
  *
4033
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
4034
4526
  */
4035
4527
  static extend<T extends Record<string, unknown>>(
4036
4528
  /**
@@ -4049,6 +4541,8 @@ declare namespace sap {
4049
4541
  ): Function;
4050
4542
  /**
4051
4543
  * Returns a metadata object for class sap.ui.table.RowSettings.
4544
+ *
4545
+ * @returns Metadata object describing this class
4052
4546
  */
4053
4547
  static getMetadata(): sap.ui.core.ElementMetadata;
4054
4548
  /**
@@ -4069,6 +4563,8 @@ declare namespace sap {
4069
4563
  * property must be set.
4070
4564
  *
4071
4565
  * Default value is `"None"`.
4566
+ *
4567
+ * @returns Value of property `highlight`
4072
4568
  */
4073
4569
  getHighlight(): string;
4074
4570
  /**
@@ -4081,6 +4577,8 @@ declare namespace sap {
4081
4577
  * the highlight.
4082
4578
  *
4083
4579
  * Default value is `empty string`.
4580
+ *
4581
+ * @returns Value of property `highlightText`
4084
4582
  */
4085
4583
  getHighlightText(): string;
4086
4584
  /**
@@ -4094,6 +4592,8 @@ declare namespace sap {
4094
4592
  * must be set for **one** row only.
4095
4593
  *
4096
4594
  * Default value is `false`.
4595
+ *
4596
+ * @returns Value of property `navigated`
4097
4597
  */
4098
4598
  getNavigated(): boolean;
4099
4599
  /**
@@ -4116,6 +4616,8 @@ declare namespace sap {
4116
4616
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4117
4617
  *
4118
4618
  * Default value is `"None"`.
4619
+ *
4620
+ * @returns Reference to `this` in order to allow method chaining
4119
4621
  */
4120
4622
  setHighlight(
4121
4623
  /**
@@ -4135,6 +4637,8 @@ declare namespace sap {
4135
4637
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4136
4638
  *
4137
4639
  * Default value is `empty string`.
4640
+ *
4641
+ * @returns Reference to `this` in order to allow method chaining
4138
4642
  */
4139
4643
  setHighlightText(
4140
4644
  /**
@@ -4155,6 +4659,8 @@ declare namespace sap {
4155
4659
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4156
4660
  *
4157
4661
  * Default value is `false`.
4662
+ *
4663
+ * @returns Reference to `this` in order to allow method chaining
4158
4664
  */
4159
4665
  setNavigated(
4160
4666
  /**
@@ -4220,6 +4726,8 @@ declare namespace sap {
4220
4726
  * contained in `oClassInfo`.
4221
4727
  *
4222
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
4223
4731
  */
4224
4732
  static extend<T extends Record<string, unknown>>(
4225
4733
  /**
@@ -4238,10 +4746,14 @@ declare namespace sap {
4238
4746
  ): Function;
4239
4747
  /**
4240
4748
  * Returns a metadata object for class sap.ui.table.Table.
4749
+ *
4750
+ * @returns Metadata object describing this class
4241
4751
  */
4242
4752
  static getMetadata(): sap.ui.core.ElementMetadata;
4243
4753
  /**
4244
4754
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4755
+ *
4756
+ * @returns Reference to `this` in order to allow method chaining
4245
4757
  */
4246
4758
  addAriaLabelledBy(
4247
4759
  /**
@@ -4251,6 +4763,8 @@ declare namespace sap {
4251
4763
  ): this;
4252
4764
  /**
4253
4765
  * Adds some column to the aggregation {@link #getColumns columns}.
4766
+ *
4767
+ * @returns Reference to `this` in order to allow method chaining
4254
4768
  */
4255
4769
  addColumn(
4256
4770
  /**
@@ -4260,6 +4774,8 @@ declare namespace sap {
4260
4774
  ): this;
4261
4775
  /**
4262
4776
  * Adds some extension to the aggregation {@link #getExtension extension}.
4777
+ *
4778
+ * @returns Reference to `this` in order to allow method chaining
4263
4779
  */
4264
4780
  addExtension(
4265
4781
  /**
@@ -4271,6 +4787,8 @@ declare namespace sap {
4271
4787
  * @SINCE 1.64
4272
4788
  *
4273
4789
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
4790
+ *
4791
+ * @returns Reference to `this` in order to allow method chaining
4274
4792
  */
4275
4793
  addPlugin(
4276
4794
  /**
@@ -4280,6 +4798,8 @@ declare namespace sap {
4280
4798
  ): this;
4281
4799
  /**
4282
4800
  * Adds some row to the aggregation {@link #getRows rows}.
4801
+ *
4802
+ * @returns Reference to `this` in order to allow method chaining
4283
4803
  */
4284
4804
  addRow(
4285
4805
  /**
@@ -4290,6 +4810,8 @@ declare namespace sap {
4290
4810
  /**
4291
4811
  * Adds the given selection interval to the selection. In case of a single selection, only `iIndexTo` is
4292
4812
  * added to the selection.
4813
+ *
4814
+ * @returns Reference to `this` in order to allow method chaining
4293
4815
  */
4294
4816
  addSelectionInterval(
4295
4817
  /**
@@ -4311,6 +4833,8 @@ declare namespace sap {
4311
4833
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4312
4834
  *
4313
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
4314
4838
  */
4315
4839
  attachBeforeOpenContextMenu(
4316
4840
  /**
@@ -4337,6 +4861,8 @@ declare namespace sap {
4337
4861
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4338
4862
  *
4339
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
4340
4866
  */
4341
4867
  attachBeforeOpenContextMenu(
4342
4868
  /**
@@ -4358,6 +4884,8 @@ declare namespace sap {
4358
4884
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4359
4885
  *
4360
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
4361
4889
  */
4362
4890
  attachBusyStateChanged(
4363
4891
  /**
@@ -4384,6 +4912,8 @@ declare namespace sap {
4384
4912
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4385
4913
  *
4386
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
4387
4917
  */
4388
4918
  attachBusyStateChanged(
4389
4919
  /**
@@ -4404,6 +4934,8 @@ declare namespace sap {
4404
4934
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4405
4935
  *
4406
4936
  * fired when the user clicks a cell of the table (experimental!).
4937
+ *
4938
+ * @returns Reference to `this` in order to allow method chaining
4407
4939
  */
4408
4940
  attachCellClick(
4409
4941
  /**
@@ -4429,6 +4961,8 @@ declare namespace sap {
4429
4961
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4430
4962
  *
4431
4963
  * fired when the user clicks a cell of the table (experimental!).
4964
+ *
4965
+ * @returns Reference to `this` in order to allow method chaining
4432
4966
  */
4433
4967
  attachCellClick(
4434
4968
  /**
@@ -4451,6 +4985,8 @@ declare namespace sap {
4451
4985
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4452
4986
  *
4453
4987
  * fired when the user clicks a cell of the table.
4988
+ *
4989
+ * @returns Reference to `this` in order to allow method chaining
4454
4990
  */
4455
4991
  attachCellContextmenu(
4456
4992
  /**
@@ -4478,6 +5014,8 @@ declare namespace sap {
4478
5014
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4479
5015
  *
4480
5016
  * fired when the user clicks a cell of the table.
5017
+ *
5018
+ * @returns Reference to `this` in order to allow method chaining
4481
5019
  */
4482
5020
  attachCellContextmenu(
4483
5021
  /**
@@ -4498,6 +5036,8 @@ declare namespace sap {
4498
5036
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4499
5037
  *
4500
5038
  * fired when a column of the table should be freezed
5039
+ *
5040
+ * @returns Reference to `this` in order to allow method chaining
4501
5041
  */
4502
5042
  attachColumnFreeze(
4503
5043
  /**
@@ -4523,6 +5063,8 @@ declare namespace sap {
4523
5063
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4524
5064
  *
4525
5065
  * fired when a column of the table should be freezed
5066
+ *
5067
+ * @returns Reference to `this` in order to allow method chaining
4526
5068
  */
4527
5069
  attachColumnFreeze(
4528
5070
  /**
@@ -4541,6 +5083,8 @@ declare namespace sap {
4541
5083
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4542
5084
  *
4543
5085
  * fired when a table column is moved.
5086
+ *
5087
+ * @returns Reference to `this` in order to allow method chaining
4544
5088
  */
4545
5089
  attachColumnMove(
4546
5090
  /**
@@ -4564,6 +5108,8 @@ declare namespace sap {
4564
5108
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4565
5109
  *
4566
5110
  * fired when a table column is moved.
5111
+ *
5112
+ * @returns Reference to `this` in order to allow method chaining
4567
5113
  */
4568
5114
  attachColumnMove(
4569
5115
  /**
@@ -4582,6 +5128,8 @@ declare namespace sap {
4582
5128
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4583
5129
  *
4584
5130
  * fired when a table column is resized.
5131
+ *
5132
+ * @returns Reference to `this` in order to allow method chaining
4585
5133
  */
4586
5134
  attachColumnResize(
4587
5135
  /**
@@ -4605,6 +5153,8 @@ declare namespace sap {
4605
5153
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4606
5154
  *
4607
5155
  * fired when a table column is resized.
5156
+ *
5157
+ * @returns Reference to `this` in order to allow method chaining
4608
5158
  */
4609
5159
  attachColumnResize(
4610
5160
  /**
@@ -4623,6 +5173,8 @@ declare namespace sap {
4623
5173
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4624
5174
  *
4625
5175
  * fired when a column of the table has been selected
5176
+ *
5177
+ * @returns Reference to `this` in order to allow method chaining
4626
5178
  */
4627
5179
  attachColumnSelect(
4628
5180
  /**
@@ -4646,6 +5198,8 @@ declare namespace sap {
4646
5198
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4647
5199
  *
4648
5200
  * fired when a column of the table has been selected
5201
+ *
5202
+ * @returns Reference to `this` in order to allow method chaining
4649
5203
  */
4650
5204
  attachColumnSelect(
4651
5205
  /**
@@ -4665,6 +5219,8 @@ declare namespace sap {
4665
5219
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4666
5220
  *
4667
5221
  * fired when the visibility of a table column is changed.
5222
+ *
5223
+ * @returns Reference to `this` in order to allow method chaining
4668
5224
  */
4669
5225
  attachColumnVisibility(
4670
5226
  /**
@@ -4689,6 +5245,8 @@ declare namespace sap {
4689
5245
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4690
5246
  *
4691
5247
  * fired when the visibility of a table column is changed.
5248
+ *
5249
+ * @returns Reference to `this` in order to allow method chaining
4692
5250
  */
4693
5251
  attachColumnVisibility(
4694
5252
  /**
@@ -4710,6 +5268,8 @@ declare namespace sap {
4710
5268
  *
4711
5269
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4712
5270
  * the event was triggered is passed as parameter.
5271
+ *
5272
+ * @returns Reference to `this` in order to allow method chaining
4713
5273
  */
4714
5274
  attachCustomFilter(
4715
5275
  /**
@@ -4736,6 +5296,8 @@ declare namespace sap {
4736
5296
  *
4737
5297
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4738
5298
  * the event was triggered is passed as parameter.
5299
+ *
5300
+ * @returns Reference to `this` in order to allow method chaining
4739
5301
  */
4740
5302
  attachCustomFilter(
4741
5303
  /**
@@ -4754,6 +5316,8 @@ declare namespace sap {
4754
5316
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4755
5317
  *
4756
5318
  * fired when the table is filtered.
5319
+ *
5320
+ * @returns Reference to `this` in order to allow method chaining
4757
5321
  */
4758
5322
  attachFilter(
4759
5323
  /**
@@ -4777,6 +5341,8 @@ declare namespace sap {
4777
5341
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4778
5342
  *
4779
5343
  * fired when the table is filtered.
5344
+ *
5345
+ * @returns Reference to `this` in order to allow method chaining
4780
5346
  */
4781
5347
  attachFilter(
4782
5348
  /**
@@ -4799,6 +5365,8 @@ declare namespace sap {
4799
5365
  *
4800
5366
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4801
5367
  * The event even is fired when setFirstVisibleRow is called programmatically.
5368
+ *
5369
+ * @returns Reference to `this` in order to allow method chaining
4802
5370
  */
4803
5371
  attachFirstVisibleRowChanged(
4804
5372
  /**
@@ -4826,6 +5394,8 @@ declare namespace sap {
4826
5394
  *
4827
5395
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4828
5396
  * The event even is fired when setFirstVisibleRow is called programmatically.
5397
+ *
5398
+ * @returns Reference to `this` in order to allow method chaining
4829
5399
  */
4830
5400
  attachFirstVisibleRowChanged(
4831
5401
  /**
@@ -4844,6 +5414,8 @@ declare namespace sap {
4844
5414
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4845
5415
  *
4846
5416
  * fired when the table is grouped (experimental!).
5417
+ *
5418
+ * @returns Reference to `this` in order to allow method chaining
4847
5419
  */
4848
5420
  attachGroup(
4849
5421
  /**
@@ -4867,6 +5439,8 @@ declare namespace sap {
4867
5439
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4868
5440
  *
4869
5441
  * fired when the table is grouped (experimental!).
5442
+ *
5443
+ * @returns Reference to `this` in order to allow method chaining
4870
5444
  */
4871
5445
  attachGroup(
4872
5446
  /**
@@ -4888,6 +5462,8 @@ declare namespace sap {
4888
5462
  *
4889
5463
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4890
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
4891
5467
  */
4892
5468
  attachPaste(
4893
5469
  /**
@@ -4914,6 +5490,8 @@ declare namespace sap {
4914
5490
  *
4915
5491
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4916
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
4917
5495
  */
4918
5496
  attachPaste(
4919
5497
  /**
@@ -4936,6 +5514,8 @@ declare namespace sap {
4936
5514
  * selection changes - to find out the selected rows you should better use the table selection API)
4937
5515
  *
4938
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
4939
5519
  */
4940
5520
  attachRowSelectionChange(
4941
5521
  /**
@@ -4963,6 +5543,8 @@ declare namespace sap {
4963
5543
  * selection changes - to find out the selected rows you should better use the table selection API)
4964
5544
  *
4965
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
4966
5548
  */
4967
5549
  attachRowSelectionChange(
4968
5550
  /**
@@ -4986,6 +5568,8 @@ declare namespace sap {
4986
5568
  * interaction, for example.
4987
5569
  *
4988
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
4989
5573
  */
4990
5574
  attachRowsUpdated(
4991
5575
  /**
@@ -5014,6 +5598,8 @@ declare namespace sap {
5014
5598
  * interaction, for example.
5015
5599
  *
5016
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
5017
5603
  */
5018
5604
  attachRowsUpdated(
5019
5605
  /**
@@ -5032,6 +5618,8 @@ declare namespace sap {
5032
5618
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
5033
5619
  *
5034
5620
  * fired when the table is sorted.
5621
+ *
5622
+ * @returns Reference to `this` in order to allow method chaining
5035
5623
  */
5036
5624
  attachSort(
5037
5625
  /**
@@ -5055,6 +5643,8 @@ declare namespace sap {
5055
5643
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
5056
5644
  *
5057
5645
  * fired when the table is sorted.
5646
+ *
5647
+ * @returns Reference to `this` in order to allow method chaining
5058
5648
  */
5059
5649
  attachSort(
5060
5650
  /**
@@ -5082,6 +5672,8 @@ declare namespace sap {
5082
5672
  *
5083
5673
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
5084
5674
  * of the possible properties of `oBindingInfo`.
5675
+ *
5676
+ * @returns Reference to `this` in order to allow method chaining
5085
5677
  */
5086
5678
  bindColumns(
5087
5679
  /**
@@ -5094,6 +5686,8 @@ declare namespace sap {
5094
5686
  *
5095
5687
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
5096
5688
  * of the possible properties of `oBindingInfo`.
5689
+ *
5690
+ * @returns Reference to `this` in order to allow method chaining
5097
5691
  */
5098
5692
  bindRows(
5099
5693
  /**
@@ -5103,58 +5697,82 @@ declare namespace sap {
5103
5697
  ): this;
5104
5698
  /**
5105
5699
  * Removes complete selection.
5700
+ *
5701
+ * @returns Reference to `this` in order to allow method chaining
5106
5702
  */
5107
5703
  clearSelection(): this;
5108
5704
  /**
5109
5705
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
5706
+ *
5707
+ * @returns Reference to `this` in order to allow method chaining
5110
5708
  */
5111
5709
  destroyColumns(): this;
5112
5710
  /**
5113
5711
  * @SINCE 1.54
5114
5712
  *
5115
5713
  * Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
5714
+ *
5715
+ * @returns Reference to `this` in order to allow method chaining
5116
5716
  */
5117
5717
  destroyContextMenu(): this;
5118
5718
  /**
5119
5719
  * Destroys all the extension in the aggregation {@link #getExtension extension}.
5720
+ *
5721
+ * @returns Reference to `this` in order to allow method chaining
5120
5722
  */
5121
5723
  destroyExtension(): this;
5122
5724
  /**
5123
5725
  * Destroys the footer in the aggregation {@link #getFooter footer}.
5726
+ *
5727
+ * @returns Reference to `this` in order to allow method chaining
5124
5728
  */
5125
5729
  destroyFooter(): this;
5126
5730
  /**
5127
5731
  * Destroys the noData in the aggregation {@link #getNoData noData}.
5732
+ *
5733
+ * @returns Reference to `this` in order to allow method chaining
5128
5734
  */
5129
5735
  destroyNoData(): this;
5130
5736
  /**
5131
5737
  * @SINCE 1.64
5132
5738
  *
5133
5739
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
5740
+ *
5741
+ * @returns Reference to `this` in order to allow method chaining
5134
5742
  */
5135
5743
  destroyPlugins(): this;
5136
5744
  /**
5137
5745
  * Destroys the rowActionTemplate in the aggregation {@link #getRowActionTemplate rowActionTemplate}.
5746
+ *
5747
+ * @returns Reference to `this` in order to allow method chaining
5138
5748
  */
5139
5749
  destroyRowActionTemplate(): this;
5140
5750
  /**
5141
5751
  * Destroys all the rows in the aggregation {@link #getRows rows}.
5752
+ *
5753
+ * @returns Reference to `this` in order to allow method chaining
5142
5754
  */
5143
5755
  destroyRows(): this;
5144
5756
  /**
5145
5757
  * Destroys the rowSettingsTemplate in the aggregation {@link #getRowSettingsTemplate rowSettingsTemplate}.
5758
+ *
5759
+ * @returns Reference to `this` in order to allow method chaining
5146
5760
  */
5147
5761
  destroyRowSettingsTemplate(): this;
5148
5762
  /**
5149
5763
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
5150
5764
  *
5151
5765
  * Destroys the title in the aggregation {@link #getTitle title}.
5766
+ *
5767
+ * @returns Reference to `this` in order to allow method chaining
5152
5768
  */
5153
5769
  destroyTitle(): this;
5154
5770
  /**
5155
5771
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
5156
5772
  *
5157
5773
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5774
+ *
5775
+ * @returns Reference to `this` in order to allow method chaining
5158
5776
  */
5159
5777
  destroyToolbar(): this;
5160
5778
  /**
@@ -5164,6 +5782,8 @@ declare namespace sap {
5164
5782
  * event of this `sap.ui.table.Table`.
5165
5783
  *
5166
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
5167
5787
  */
5168
5788
  detachBeforeOpenContextMenu(
5169
5789
  /**
@@ -5182,6 +5802,8 @@ declare namespace sap {
5182
5802
  * this `sap.ui.table.Table`.
5183
5803
  *
5184
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
5185
5807
  */
5186
5808
  detachBusyStateChanged(
5187
5809
  /**
@@ -5199,6 +5821,8 @@ declare namespace sap {
5199
5821
  * Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
5200
5822
  *
5201
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
5202
5826
  */
5203
5827
  detachCellClick(
5204
5828
  /**
@@ -5218,6 +5842,8 @@ declare namespace sap {
5218
5842
  * this `sap.ui.table.Table`.
5219
5843
  *
5220
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
5221
5847
  */
5222
5848
  detachCellContextmenu(
5223
5849
  /**
@@ -5235,6 +5861,8 @@ declare namespace sap {
5235
5861
  * Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
5236
5862
  *
5237
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
5238
5866
  */
5239
5867
  detachColumnFreeze(
5240
5868
  /**
@@ -5250,6 +5878,8 @@ declare namespace sap {
5250
5878
  * Detaches event handler `fnFunction` from the {@link #event:columnMove columnMove} event of this `sap.ui.table.Table`.
5251
5879
  *
5252
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
5253
5883
  */
5254
5884
  detachColumnMove(
5255
5885
  /**
@@ -5265,6 +5895,8 @@ declare namespace sap {
5265
5895
  * Detaches event handler `fnFunction` from the {@link #event:columnResize columnResize} event of this `sap.ui.table.Table`.
5266
5896
  *
5267
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
5268
5900
  */
5269
5901
  detachColumnResize(
5270
5902
  /**
@@ -5280,6 +5912,8 @@ declare namespace sap {
5280
5912
  * Detaches event handler `fnFunction` from the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
5281
5913
  *
5282
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
5283
5917
  */
5284
5918
  detachColumnSelect(
5285
5919
  /**
@@ -5296,6 +5930,8 @@ declare namespace sap {
5296
5930
  * this `sap.ui.table.Table`.
5297
5931
  *
5298
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
5299
5935
  */
5300
5936
  detachColumnVisibility(
5301
5937
  /**
@@ -5313,6 +5949,8 @@ declare namespace sap {
5313
5949
  * Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
5314
5950
  *
5315
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
5316
5954
  */
5317
5955
  detachCustomFilter(
5318
5956
  /**
@@ -5328,6 +5966,8 @@ declare namespace sap {
5328
5966
  * Detaches event handler `fnFunction` from the {@link #event:filter filter} event of this `sap.ui.table.Table`.
5329
5967
  *
5330
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
5331
5971
  */
5332
5972
  detachFilter(
5333
5973
  /**
@@ -5346,6 +5986,8 @@ declare namespace sap {
5346
5986
  * event of this `sap.ui.table.Table`.
5347
5987
  *
5348
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
5349
5991
  */
5350
5992
  detachFirstVisibleRowChanged(
5351
5993
  /**
@@ -5361,6 +6003,8 @@ declare namespace sap {
5361
6003
  * Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.Table`.
5362
6004
  *
5363
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
5364
6008
  */
5365
6009
  detachGroup(
5366
6010
  /**
@@ -5378,6 +6022,8 @@ declare namespace sap {
5378
6022
  * Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5379
6023
  *
5380
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
5381
6027
  */
5382
6028
  detachPaste(
5383
6029
  /**
@@ -5394,6 +6040,8 @@ declare namespace sap {
5394
6040
  * of this `sap.ui.table.Table`.
5395
6041
  *
5396
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
5397
6045
  */
5398
6046
  detachRowSelectionChange(
5399
6047
  /**
@@ -5411,6 +6059,8 @@ declare namespace sap {
5411
6059
  * Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
5412
6060
  *
5413
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
5414
6064
  */
5415
6065
  detachRowsUpdated(
5416
6066
  /**
@@ -5426,6 +6076,8 @@ declare namespace sap {
5426
6076
  * Detaches event handler `fnFunction` from the {@link #event:sort sort} event of this `sap.ui.table.Table`.
5427
6077
  *
5428
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
5429
6081
  */
5430
6082
  detachSort(
5431
6083
  /**
@@ -5446,6 +6098,8 @@ declare namespace sap {
5446
6098
  *
5447
6099
  * **Please note: This method uses synchronous requests. Support and functioning ends with the support
5448
6100
  * for synchronous requests in browsers.**
6101
+ *
6102
+ * @returns Export object
5449
6103
  */
5450
6104
  exportData(
5451
6105
  /**
@@ -5474,6 +6128,8 @@ declare namespace sap {
5474
6128
  *
5475
6129
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5476
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
5477
6133
  */
5478
6134
  fireBeforeOpenContextMenu(
5479
6135
  /**
@@ -5498,6 +6154,8 @@ declare namespace sap {
5498
6154
  * @SINCE 1.37.0
5499
6155
  *
5500
6156
  * Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
6157
+ *
6158
+ * @returns Reference to `this` in order to allow method chaining
5501
6159
  */
5502
6160
  fireBusyStateChanged(
5503
6161
  /**
@@ -5512,6 +6170,8 @@ declare namespace sap {
5512
6170
  *
5513
6171
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5514
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
5515
6175
  */
5516
6176
  fireCellClick(
5517
6177
  /**
@@ -5553,6 +6213,8 @@ declare namespace sap {
5553
6213
  *
5554
6214
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5555
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
5556
6218
  */
5557
6219
  fireCellContextmenu(
5558
6220
  /**
@@ -5593,6 +6255,8 @@ declare namespace sap {
5593
6255
  *
5594
6256
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5595
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
5596
6260
  */
5597
6261
  fireColumnFreeze(
5598
6262
  /**
@@ -5610,6 +6274,8 @@ declare namespace sap {
5610
6274
  *
5611
6275
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5612
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
5613
6279
  */
5614
6280
  fireColumnMove(
5615
6281
  /**
@@ -5631,6 +6297,8 @@ declare namespace sap {
5631
6297
  *
5632
6298
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5633
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
5634
6302
  */
5635
6303
  fireColumnResize(
5636
6304
  /**
@@ -5652,6 +6320,8 @@ declare namespace sap {
5652
6320
  *
5653
6321
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5654
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
5655
6325
  */
5656
6326
  fireColumnSelect(
5657
6327
  /**
@@ -5669,6 +6339,8 @@ declare namespace sap {
5669
6339
  *
5670
6340
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5671
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
5672
6344
  */
5673
6345
  fireColumnVisibility(
5674
6346
  /**
@@ -5689,6 +6361,8 @@ declare namespace sap {
5689
6361
  * @SINCE 1.23.0
5690
6362
  *
5691
6363
  * Fires event {@link #event:customFilter customFilter} to attached listeners.
6364
+ *
6365
+ * @returns Reference to `this` in order to allow method chaining
5692
6366
  */
5693
6367
  fireCustomFilter(
5694
6368
  /**
@@ -5701,6 +6375,8 @@ declare namespace sap {
5701
6375
  *
5702
6376
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5703
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
5704
6380
  */
5705
6381
  fireFilter(
5706
6382
  /**
@@ -5721,6 +6397,8 @@ declare namespace sap {
5721
6397
  * @SINCE 1.37.0
5722
6398
  *
5723
6399
  * Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
6400
+ *
6401
+ * @returns Reference to `this` in order to allow method chaining
5724
6402
  */
5725
6403
  fireFirstVisibleRowChanged(
5726
6404
  /**
@@ -5733,6 +6411,8 @@ declare namespace sap {
5733
6411
  *
5734
6412
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5735
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
5736
6416
  */
5737
6417
  fireGroup(
5738
6418
  /**
@@ -5752,6 +6432,8 @@ declare namespace sap {
5752
6432
  *
5753
6433
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5754
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
5755
6437
  */
5756
6438
  firePaste(
5757
6439
  /**
@@ -5767,6 +6449,8 @@ declare namespace sap {
5767
6449
  ): boolean;
5768
6450
  /**
5769
6451
  * Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
6452
+ *
6453
+ * @returns Reference to `this` in order to allow method chaining
5770
6454
  */
5771
6455
  fireRowSelectionChange(
5772
6456
  /**
@@ -5800,6 +6484,8 @@ declare namespace sap {
5800
6484
  * @SINCE 1.86
5801
6485
  *
5802
6486
  * Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
6487
+ *
6488
+ * @returns Reference to `this` in order to allow method chaining
5803
6489
  */
5804
6490
  fireRowsUpdated(
5805
6491
  /**
@@ -5812,6 +6498,8 @@ declare namespace sap {
5812
6498
  *
5813
6499
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5814
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
5815
6503
  */
5816
6504
  fireSort(
5817
6505
  /**
@@ -5862,6 +6550,8 @@ declare namespace sap {
5862
6550
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
5863
6551
  *
5864
6552
  * Default value is `false`.
6553
+ *
6554
+ * @returns Value of property `alternateRowColors`
5865
6555
  */
5866
6556
  getAlternateRowColors(): boolean;
5867
6557
  /**
@@ -5871,6 +6561,8 @@ declare namespace sap {
5871
6561
  getAriaLabelledBy(): sap.ui.core.ID[];
5872
6562
  /**
5873
6563
  * Get the binding object for a specific aggregation/property.
6564
+ *
6565
+ * @returns The binding for the given name
5874
6566
  */
5875
6567
  getBinding(
5876
6568
  /**
@@ -5888,6 +6580,8 @@ declare namespace sap {
5888
6580
  *
5889
6581
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
5890
6582
  * to each individual row of the table's header.
6583
+ *
6584
+ * @returns Value of property `columnHeaderHeight`
5891
6585
  */
5892
6586
  getColumnHeaderHeight(): int;
5893
6587
  /**
@@ -5899,6 +6593,8 @@ declare namespace sap {
5899
6593
  * table can't be guaranteed any more.
5900
6594
  *
5901
6595
  * Default value is `true`.
6596
+ *
6597
+ * @returns Value of property `columnHeaderVisible`
5902
6598
  */
5903
6599
  getColumnHeaderVisible(): boolean;
5904
6600
  /**
@@ -5915,6 +6611,8 @@ declare namespace sap {
5915
6611
  *
5916
6612
  * For server-based models you should consider to only make this API call when the index is within the currently
5917
6613
  * visible scroll area.
6614
+ *
6615
+ * @returns The context at this index or null
5918
6616
  */
5919
6617
  getContextByIndex(
5920
6618
  /**
@@ -5963,6 +6661,8 @@ declare namespace sap {
5963
6661
  * color in certain themes!)
5964
6662
  *
5965
6663
  * Default value is `true`.
6664
+ *
6665
+ * @returns Value of property `editable`
5966
6666
  */
5967
6667
  getEditable(): boolean;
5968
6668
  /**
@@ -5977,6 +6677,8 @@ declare namespace sap {
5977
6677
  * {@link sap.ui.core.Control#setBusy}.
5978
6678
  *
5979
6679
  * Default value is `false`.
6680
+ *
6681
+ * @returns Value of property `enableBusyIndicator`
5980
6682
  */
5981
6683
  getEnableBusyIndicator(): boolean;
5982
6684
  /**
@@ -5987,6 +6689,8 @@ declare namespace sap {
5987
6689
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
5988
6690
  *
5989
6691
  * Default value is `false`.
6692
+ *
6693
+ * @returns Value of property `enableCellFilter`
5990
6694
  */
5991
6695
  getEnableCellFilter(): boolean;
5992
6696
  /**
@@ -5997,6 +6701,8 @@ declare namespace sap {
5997
6701
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
5998
6702
  *
5999
6703
  * Default value is `false`.
6704
+ *
6705
+ * @returns Value of property `enableColumnFreeze`
6000
6706
  */
6001
6707
  getEnableColumnFreeze(): boolean;
6002
6708
  /**
@@ -6005,6 +6711,8 @@ declare namespace sap {
6005
6711
  * Flag to enable or disable column reordering
6006
6712
  *
6007
6713
  * Default value is `true`.
6714
+ *
6715
+ * @returns Value of property `enableColumnReordering`
6008
6716
  */
6009
6717
  getEnableColumnReordering(): boolean;
6010
6718
  /**
@@ -6016,6 +6724,8 @@ declare namespace sap {
6016
6724
  * button will be rendered for which' press event (customFilter) you can register an event handler.
6017
6725
  *
6018
6726
  * Default value is `false`.
6727
+ *
6728
+ * @returns Value of property `enableCustomFilter`
6019
6729
  */
6020
6730
  getEnableCustomFilter(): boolean;
6021
6731
  /**
@@ -6040,6 +6750,8 @@ declare namespace sap {
6040
6750
  * table is grouped by another column or grouping is disabled.
6041
6751
  *
6042
6752
  * Default value is `false`.
6753
+ *
6754
+ * @returns Value of property `enableGrouping`
6043
6755
  */
6044
6756
  getEnableGrouping(): boolean;
6045
6757
  /**
@@ -6051,6 +6763,8 @@ declare namespace sap {
6051
6763
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
6052
6764
  *
6053
6765
  * Default value is `true`.
6766
+ *
6767
+ * @returns Value of property `enableSelectAll`
6054
6768
  */
6055
6769
  getEnableSelectAll(): boolean;
6056
6770
  /**
@@ -6066,6 +6780,8 @@ declare namespace sap {
6066
6780
  * First visible row.
6067
6781
  *
6068
6782
  * Default value is `0`.
6783
+ *
6784
+ * @returns Value of property `firstVisibleRow`
6069
6785
  */
6070
6786
  getFirstVisibleRow(): int;
6071
6787
  /**
@@ -6080,6 +6796,8 @@ declare namespace sap {
6080
6796
  * client model}.
6081
6797
  *
6082
6798
  * Default value is `0`.
6799
+ *
6800
+ * @returns Value of property `fixedBottomRowCount`
6083
6801
  */
6084
6802
  getFixedBottomRowCount(): int;
6085
6803
  /**
@@ -6094,6 +6812,8 @@ declare namespace sap {
6094
6812
  * able to scroll horizontally.
6095
6813
  *
6096
6814
  * Default value is `0`.
6815
+ *
6816
+ * @returns Value of property `fixedColumnCount`
6097
6817
  */
6098
6818
  getFixedColumnCount(): int;
6099
6819
  /**
@@ -6106,6 +6826,8 @@ declare namespace sap {
6106
6826
  * client model}.
6107
6827
  *
6108
6828
  * Default value is `0`.
6829
+ *
6830
+ * @returns Value of property `fixedRowCount`
6109
6831
  */
6110
6832
  getFixedRowCount(): int;
6111
6833
  /**
@@ -6127,6 +6849,8 @@ declare namespace sap {
6127
6849
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
6128
6850
  *
6129
6851
  * Default value is `5`.
6852
+ *
6853
+ * @returns Value of property `minAutoRowCount`
6130
6854
  */
6131
6855
  getMinAutoRowCount(): int;
6132
6856
  /**
@@ -6138,6 +6862,8 @@ declare namespace sap {
6138
6862
  * option.
6139
6863
  *
6140
6864
  * Default value is `Scrollbar`.
6865
+ *
6866
+ * @returns Value of property `navigationMode`
6141
6867
  */
6142
6868
  getNavigationMode(): sap.ui.table.NavigationMode;
6143
6869
  /**
@@ -6170,6 +6896,8 @@ declare namespace sap {
6170
6896
  * `1` and `2` are possible.
6171
6897
  *
6172
6898
  * Default value is `0`.
6899
+ *
6900
+ * @returns Value of property `rowActionCount`
6173
6901
  */
6174
6902
  getRowActionCount(): int;
6175
6903
  /**
@@ -6196,6 +6924,8 @@ declare namespace sap {
6196
6924
  *
6197
6925
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
6198
6926
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6927
+ *
6928
+ * @returns Value of property `rowHeight`
6199
6929
  */
6200
6930
  getRowHeight(): int;
6201
6931
  /**
@@ -6229,10 +6959,14 @@ declare namespace sap {
6229
6959
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices}
6230
6960
  *
6231
6961
  * Retrieves the lead selection index.
6962
+ *
6963
+ * @returns Currently Selected Index.
6232
6964
  */
6233
6965
  getSelectedIndex(): int;
6234
6966
  /**
6235
6967
  * Zero-based indices of selected items, wrapped in an array. An empty array means "no selection".
6968
+ *
6969
+ * @returns Selected indices
6236
6970
  */
6237
6971
  getSelectedIndices(): int[];
6238
6972
  /**
@@ -6244,6 +6978,8 @@ declare namespace sap {
6244
6978
  * on table type) is enabled, even if `sap.ui.table.SelectionBehavior.RowOnly` is set.
6245
6979
  *
6246
6980
  * Default value is `RowSelector`.
6981
+ *
6982
+ * @returns Value of property `selectionBehavior`
6247
6983
  */
6248
6984
  getSelectionBehavior(): sap.ui.table.SelectionBehavior;
6249
6985
  /**
@@ -6257,6 +6993,8 @@ declare namespace sap {
6257
6993
  * applied to the table, the selection mode is controlled by the plugin.
6258
6994
  *
6259
6995
  * Default value is `MultiToggle`.
6996
+ *
6997
+ * @returns Value of property `selectionMode`
6260
6998
  */
6261
6999
  getSelectionMode(): sap.ui.table.SelectionMode;
6262
7000
  /**
@@ -6266,6 +7004,8 @@ declare namespace sap {
6266
7004
  * header menu. It allows to show or hide columns
6267
7005
  *
6268
7006
  * Default value is `false`.
7007
+ *
7008
+ * @returns Value of property `showColumnVisibilityMenu`
6269
7009
  */
6270
7010
  getShowColumnVisibilityMenu(): boolean;
6271
7011
  /**
@@ -6275,6 +7015,8 @@ declare namespace sap {
6275
7015
  * just show a grid of empty cells
6276
7016
  *
6277
7017
  * Default value is `true`.
7018
+ *
7019
+ * @returns Value of property `showNoData`
6278
7020
  */
6279
7021
  getShowNoData(): boolean;
6280
7022
  /**
@@ -6286,6 +7028,8 @@ declare namespace sap {
6286
7028
  * anymore on the Table content.
6287
7029
  *
6288
7030
  * Default value is `false`.
7031
+ *
7032
+ * @returns Value of property `showOverlay`
6289
7033
  */
6290
7034
  getShowOverlay(): boolean;
6291
7035
  /**
@@ -6294,6 +7038,8 @@ declare namespace sap {
6294
7038
  * {@link sap.ui.table.Column#setSorted} and {@link sap.ui.table.Column#setSortOrder}.
6295
7039
  * See:
6296
7040
  * sap.ui.table.Table#sort
7041
+ *
7042
+ * @returns Array of sorted columns
6297
7043
  */
6298
7044
  getSortedColumns(): sap.ui.table.Column[];
6299
7045
  /**
@@ -6306,6 +7052,8 @@ declare namespace sap {
6306
7052
  * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
6307
7053
  *
6308
7054
  * Default value is `100`.
7055
+ *
7056
+ * @returns Value of property `threshold`
6309
7057
  */
6310
7058
  getThreshold(): int;
6311
7059
  /**
@@ -6331,6 +7079,8 @@ declare namespace sap {
6331
7079
  * Number of visible rows of the table.
6332
7080
  *
6333
7081
  * Default value is `10`.
7082
+ *
7083
+ * @returns Value of property `visibleRowCount`
6334
7084
  */
6335
7085
  getVisibleRowCount(): int;
6336
7086
  /**
@@ -6355,6 +7105,8 @@ declare namespace sap {
6355
7105
  * after rendering. The user can change the `visibleRowCount` by dragging a resizer.
6356
7106
  *
6357
7107
  * Default value is `Fixed`.
7108
+ *
7109
+ * @returns Value of property `visibleRowCountMode`
6358
7110
  */
6359
7111
  getVisibleRowCountMode(): sap.ui.table.VisibleRowCountMode;
6360
7112
  /**
@@ -6363,11 +7115,15 @@ declare namespace sap {
6363
7115
  * Width of the Table.
6364
7116
  *
6365
7117
  * Default value is `'auto'`.
7118
+ *
7119
+ * @returns Value of property `width`
6366
7120
  */
6367
7121
  getWidth(): sap.ui.core.CSSSize;
6368
7122
  /**
6369
7123
  * Checks for the provided `sap.ui.table.Column` in the aggregation {@link #getColumns columns}. and returns
6370
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
6371
7127
  */
6372
7128
  indexOfColumn(
6373
7129
  /**
@@ -6378,6 +7134,8 @@ declare namespace sap {
6378
7134
  /**
6379
7135
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getExtension extension}. and
6380
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
6381
7139
  */
6382
7140
  indexOfExtension(
6383
7141
  /**
@@ -6390,6 +7148,8 @@ declare namespace sap {
6390
7148
  *
6391
7149
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins
6392
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
6393
7153
  */
6394
7154
  indexOfPlugin(
6395
7155
  /**
@@ -6400,6 +7160,8 @@ declare namespace sap {
6400
7160
  /**
6401
7161
  * Checks for the provided `sap.ui.table.Row` in the aggregation {@link #getRows rows}. and returns its
6402
7162
  * index if found or -1 otherwise.
7163
+ *
7164
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6403
7165
  */
6404
7166
  indexOfRow(
6405
7167
  /**
@@ -6409,6 +7171,8 @@ declare namespace sap {
6409
7171
  ): int;
6410
7172
  /**
6411
7173
  * Inserts a column into the aggregation {@link #getColumns columns}.
7174
+ *
7175
+ * @returns Reference to `this` in order to allow method chaining
6412
7176
  */
6413
7177
  insertColumn(
6414
7178
  /**
@@ -6424,6 +7188,8 @@ declare namespace sap {
6424
7188
  ): this;
6425
7189
  /**
6426
7190
  * Inserts a extension into the aggregation {@link #getExtension extension}.
7191
+ *
7192
+ * @returns Reference to `this` in order to allow method chaining
6427
7193
  */
6428
7194
  insertExtension(
6429
7195
  /**
@@ -6441,6 +7207,8 @@ declare namespace sap {
6441
7207
  * @SINCE 1.64
6442
7208
  *
6443
7209
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
7210
+ *
7211
+ * @returns Reference to `this` in order to allow method chaining
6444
7212
  */
6445
7213
  insertPlugin(
6446
7214
  /**
@@ -6456,6 +7224,8 @@ declare namespace sap {
6456
7224
  ): this;
6457
7225
  /**
6458
7226
  * Inserts a row into the aggregation {@link #getRows rows}.
7227
+ *
7228
+ * @returns Reference to `this` in order to allow method chaining
6459
7229
  */
6460
7230
  insertRow(
6461
7231
  /**
@@ -6471,6 +7241,8 @@ declare namespace sap {
6471
7241
  ): this;
6472
7242
  /**
6473
7243
  * Checks whether an index is selected.
7244
+ *
7245
+ * @returns Whether the index is selected
6474
7246
  */
6475
7247
  isIndexSelected(
6476
7248
  /**
@@ -6480,18 +7252,24 @@ declare namespace sap {
6480
7252
  ): boolean;
6481
7253
  /**
6482
7254
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7255
+ *
7256
+ * @returns An array of the removed elements (might be empty)
6483
7257
  */
6484
7258
  removeAllAriaLabelledBy(): sap.ui.core.ID[];
6485
7259
  /**
6486
7260
  * Removes all the controls from the aggregation {@link #getColumns columns}.
6487
7261
  *
6488
7262
  * Additionally, it unregisters them from the hosting UIArea.
7263
+ *
7264
+ * @returns An array of the removed elements (might be empty)
6489
7265
  */
6490
7266
  removeAllColumns(): sap.ui.table.Column[];
6491
7267
  /**
6492
7268
  * Removes all the controls from the aggregation {@link #getExtension extension}.
6493
7269
  *
6494
7270
  * Additionally, it unregisters them from the hosting UIArea.
7271
+ *
7272
+ * @returns An array of the removed elements (might be empty)
6495
7273
  */
6496
7274
  removeAllExtension(): sap.ui.core.Control[];
6497
7275
  /**
@@ -6500,16 +7278,22 @@ declare namespace sap {
6500
7278
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
6501
7279
  *
6502
7280
  * Additionally, it unregisters them from the hosting UIArea.
7281
+ *
7282
+ * @returns An array of the removed elements (might be empty)
6503
7283
  */
6504
7284
  removeAllPlugins(): sap.ui.table.plugins.SelectionPlugin[];
6505
7285
  /**
6506
7286
  * Removes all the controls from the aggregation {@link #getRows rows}.
6507
7287
  *
6508
7288
  * Additionally, it unregisters them from the hosting UIArea.
7289
+ *
7290
+ * @returns An array of the removed elements (might be empty)
6509
7291
  */
6510
7292
  removeAllRows(): sap.ui.table.Row[];
6511
7293
  /**
6512
7294
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7295
+ *
7296
+ * @returns The removed ariaLabelledBy or `null`
6513
7297
  */
6514
7298
  removeAriaLabelledBy(
6515
7299
  /**
@@ -6519,6 +7303,8 @@ declare namespace sap {
6519
7303
  ): sap.ui.core.ID;
6520
7304
  /**
6521
7305
  * Removes a column from the aggregation {@link #getColumns columns}.
7306
+ *
7307
+ * @returns The removed column or `null`
6522
7308
  */
6523
7309
  removeColumn(
6524
7310
  /**
@@ -6528,6 +7314,8 @@ declare namespace sap {
6528
7314
  ): sap.ui.table.Column;
6529
7315
  /**
6530
7316
  * Removes a extension from the aggregation {@link #getExtension extension}.
7317
+ *
7318
+ * @returns The removed extension or `null`
6531
7319
  */
6532
7320
  removeExtension(
6533
7321
  /**
@@ -6539,6 +7327,8 @@ declare namespace sap {
6539
7327
  * @SINCE 1.64
6540
7328
  *
6541
7329
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
7330
+ *
7331
+ * @returns The removed plugin or `null`
6542
7332
  */
6543
7333
  removePlugin(
6544
7334
  /**
@@ -6548,6 +7338,8 @@ declare namespace sap {
6548
7338
  ): sap.ui.table.plugins.SelectionPlugin;
6549
7339
  /**
6550
7340
  * Removes a row from the aggregation {@link #getRows rows}.
7341
+ *
7342
+ * @returns The removed row or `null`
6551
7343
  */
6552
7344
  removeRow(
6553
7345
  /**
@@ -6558,6 +7350,8 @@ declare namespace sap {
6558
7350
  /**
6559
7351
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
6560
7352
  * is removed from the selection.
7353
+ *
7354
+ * @returns Reference to `this` in order to allow method chaining
6561
7355
  */
6562
7356
  removeSelectionInterval(
6563
7357
  /**
@@ -6573,6 +7367,8 @@ declare namespace sap {
6573
7367
  * Adds all rows to the selection. Please note that for server based models like OData the indices which
6574
7368
  * are considered to be selected might not be available at the client yet. Calling getContextByIndex might
6575
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
6576
7372
  */
6577
7373
  selectAll(): this;
6578
7374
  /**
@@ -6585,6 +7381,8 @@ declare namespace sap {
6585
7381
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6586
7382
  *
6587
7383
  * Default value is `false`.
7384
+ *
7385
+ * @returns Reference to `this` in order to allow method chaining
6588
7386
  */
6589
7387
  setAlternateRowColors(
6590
7388
  /**
@@ -6604,6 +7402,8 @@ declare namespace sap {
6604
7402
  * to each individual row of the table's header.
6605
7403
  *
6606
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
6607
7407
  */
6608
7408
  setColumnHeaderHeight(
6609
7409
  /**
@@ -6622,6 +7422,8 @@ declare namespace sap {
6622
7422
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6623
7423
  *
6624
7424
  * Default value is `true`.
7425
+ *
7426
+ * @returns Reference to `this` in order to allow method chaining
6625
7427
  */
6626
7428
  setColumnHeaderVisible(
6627
7429
  /**
@@ -6633,6 +7435,8 @@ declare namespace sap {
6633
7435
  * @SINCE 1.54
6634
7436
  *
6635
7437
  * Sets the aggregated {@link #getContextMenu contextMenu}.
7438
+ *
7439
+ * @returns Reference to `this` in order to allow method chaining
6636
7440
  */
6637
7441
  setContextMenu(
6638
7442
  /**
@@ -6649,6 +7453,8 @@ declare namespace sap {
6649
7453
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6650
7454
  *
6651
7455
  * Default value is `true`.
7456
+ *
7457
+ * @returns Reference to `this` in order to allow method chaining
6652
7458
  */
6653
7459
  setEditable(
6654
7460
  /**
@@ -6670,6 +7476,8 @@ declare namespace sap {
6670
7476
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6671
7477
  *
6672
7478
  * Default value is `false`.
7479
+ *
7480
+ * @returns Reference to `this` in order to allow method chaining
6673
7481
  */
6674
7482
  setEnableBusyIndicator(
6675
7483
  /**
@@ -6687,6 +7495,8 @@ declare namespace sap {
6687
7495
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6688
7496
  *
6689
7497
  * Default value is `false`.
7498
+ *
7499
+ * @returns Reference to `this` in order to allow method chaining
6690
7500
  */
6691
7501
  setEnableCellFilter(
6692
7502
  /**
@@ -6704,6 +7514,8 @@ declare namespace sap {
6704
7514
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6705
7515
  *
6706
7516
  * Default value is `false`.
7517
+ *
7518
+ * @returns Reference to `this` in order to allow method chaining
6707
7519
  */
6708
7520
  setEnableColumnFreeze(
6709
7521
  /**
@@ -6719,6 +7531,8 @@ declare namespace sap {
6719
7531
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6720
7532
  *
6721
7533
  * Default value is `true`.
7534
+ *
7535
+ * @returns Reference to `this` in order to allow method chaining
6722
7536
  */
6723
7537
  setEnableColumnReordering(
6724
7538
  /**
@@ -6737,6 +7551,8 @@ declare namespace sap {
6737
7551
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6738
7552
  *
6739
7553
  * Default value is `false`.
7554
+ *
7555
+ * @returns Reference to `this` in order to allow method chaining
6740
7556
  */
6741
7557
  setEnableCustomFilter(
6742
7558
  /**
@@ -6768,6 +7584,8 @@ declare namespace sap {
6768
7584
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6769
7585
  *
6770
7586
  * Default value is `false`.
7587
+ *
7588
+ * @returns Reference to `this` in order to allow method chaining
6771
7589
  */
6772
7590
  setEnableGrouping(
6773
7591
  /**
@@ -6786,6 +7604,8 @@ declare namespace sap {
6786
7604
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6787
7605
  *
6788
7606
  * Default value is `true`.
7607
+ *
7608
+ * @returns Reference to `this` in order to allow method chaining
6789
7609
  */
6790
7610
  setEnableSelectAll(
6791
7611
  /**
@@ -6801,6 +7621,8 @@ declare namespace sap {
6801
7621
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6802
7622
  *
6803
7623
  * Default value is `0`.
7624
+ *
7625
+ * @returns Reference to `this` in order to allow method chaining
6804
7626
  */
6805
7627
  setFirstVisibleRow(
6806
7628
  /**
@@ -6822,6 +7644,8 @@ declare namespace sap {
6822
7644
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6823
7645
  *
6824
7646
  * Default value is `0`.
7647
+ *
7648
+ * @returns Reference to `this` in order to allow method chaining
6825
7649
  */
6826
7650
  setFixedBottomRowCount(
6827
7651
  /**
@@ -6843,6 +7667,8 @@ declare namespace sap {
6843
7667
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6844
7668
  *
6845
7669
  * Default value is `0`.
7670
+ *
7671
+ * @returns Reference to `this` in order to allow method chaining
6846
7672
  */
6847
7673
  setFixedColumnCount(
6848
7674
  /**
@@ -6862,6 +7688,8 @@ declare namespace sap {
6862
7688
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6863
7689
  *
6864
7690
  * Default value is `0`.
7691
+ *
7692
+ * @returns Reference to `this` in order to allow method chaining
6865
7693
  */
6866
7694
  setFixedRowCount(
6867
7695
  /**
@@ -6871,6 +7699,8 @@ declare namespace sap {
6871
7699
  ): this;
6872
7700
  /**
6873
7701
  * Sets the aggregated {@link #getFooter footer}.
7702
+ *
7703
+ * @returns Reference to `this` in order to allow method chaining
6874
7704
  */
6875
7705
  setFooter(
6876
7706
  /**
@@ -6882,6 +7712,8 @@ declare namespace sap {
6882
7712
  * @EXPERIMENTAL (since 1.28)
6883
7713
  *
6884
7714
  * Sets the associated {@link #getGroupBy groupBy}.
7715
+ *
7716
+ * @returns Reference to `this` in order to allow method chaining
6885
7717
  */
6886
7718
  setGroupBy(
6887
7719
  /**
@@ -6899,6 +7731,8 @@ declare namespace sap {
6899
7731
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6900
7732
  *
6901
7733
  * Default value is `5`.
7734
+ *
7735
+ * @returns Reference to `this` in order to allow method chaining
6902
7736
  */
6903
7737
  setMinAutoRowCount(
6904
7738
  /**
@@ -6917,6 +7751,8 @@ declare namespace sap {
6917
7751
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6918
7752
  *
6919
7753
  * Default value is `Scrollbar`.
7754
+ *
7755
+ * @returns Reference to `this` in order to allow method chaining
6920
7756
  */
6921
7757
  setNavigationMode(
6922
7758
  /**
@@ -6926,6 +7762,8 @@ declare namespace sap {
6926
7762
  ): this;
6927
7763
  /**
6928
7764
  * Sets the aggregated {@link #getNoData noData}.
7765
+ *
7766
+ * @returns Reference to `this` in order to allow method chaining
6929
7767
  */
6930
7768
  setNoData(
6931
7769
  /**
@@ -6944,6 +7782,8 @@ declare namespace sap {
6944
7782
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6945
7783
  *
6946
7784
  * Default value is `0`.
7785
+ *
7786
+ * @returns Reference to `this` in order to allow method chaining
6947
7787
  */
6948
7788
  setRowActionCount(
6949
7789
  /**
@@ -6953,6 +7793,8 @@ declare namespace sap {
6953
7793
  ): this;
6954
7794
  /**
6955
7795
  * Sets the aggregated {@link #getRowActionTemplate rowActionTemplate}.
7796
+ *
7797
+ * @returns Reference to `this` in order to allow method chaining
6956
7798
  */
6957
7799
  setRowActionTemplate(
6958
7800
  /**
@@ -6978,6 +7820,8 @@ declare namespace sap {
6978
7820
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6979
7821
  *
6980
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
6981
7825
  */
6982
7826
  setRowHeight(
6983
7827
  /**
@@ -6987,6 +7831,8 @@ declare namespace sap {
6987
7831
  ): this;
6988
7832
  /**
6989
7833
  * Sets the aggregated {@link #getRowSettingsTemplate rowSettingsTemplate}.
7834
+ *
7835
+ * @returns Reference to `this` in order to allow method chaining
6990
7836
  */
6991
7837
  setRowSettingsTemplate(
6992
7838
  /**
@@ -6996,6 +7842,8 @@ declare namespace sap {
6996
7842
  ): this;
6997
7843
  /**
6998
7844
  * Sets the selected index. The previous selection is removed.
7845
+ *
7846
+ * @returns Reference to `this` in order to allow method chaining
6999
7847
  */
7000
7848
  setSelectedIndex(
7001
7849
  /**
@@ -7014,6 +7862,8 @@ declare namespace sap {
7014
7862
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7015
7863
  *
7016
7864
  * Default value is `RowSelector`.
7865
+ *
7866
+ * @returns Reference to `this` in order to allow method chaining
7017
7867
  */
7018
7868
  setSelectionBehavior(
7019
7869
  /**
@@ -7023,6 +7873,8 @@ declare namespace sap {
7023
7873
  ): this;
7024
7874
  /**
7025
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
7026
7878
  */
7027
7879
  setSelectionInterval(
7028
7880
  /**
@@ -7036,6 +7888,8 @@ declare namespace sap {
7036
7888
  ): this;
7037
7889
  /**
7038
7890
  * Sets the selection mode. The current selection is lost.
7891
+ *
7892
+ * @returns Reference to `this` in order to allow method chaining
7039
7893
  */
7040
7894
  setSelectionMode(
7041
7895
  /**
@@ -7052,6 +7906,8 @@ declare namespace sap {
7052
7906
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7053
7907
  *
7054
7908
  * Default value is `false`.
7909
+ *
7910
+ * @returns Reference to `this` in order to allow method chaining
7055
7911
  */
7056
7912
  setShowColumnVisibilityMenu(
7057
7913
  /**
@@ -7068,6 +7924,8 @@ declare namespace sap {
7068
7924
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7069
7925
  *
7070
7926
  * Default value is `true`.
7927
+ *
7928
+ * @returns Reference to `this` in order to allow method chaining
7071
7929
  */
7072
7930
  setShowNoData(
7073
7931
  /**
@@ -7086,6 +7944,8 @@ declare namespace sap {
7086
7944
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7087
7945
  *
7088
7946
  * Default value is `false`.
7947
+ *
7948
+ * @returns Reference to `this` in order to allow method chaining
7089
7949
  */
7090
7950
  setShowOverlay(
7091
7951
  /**
@@ -7096,6 +7956,8 @@ declare namespace sap {
7096
7956
  /**
7097
7957
  * Sets the threshold value, which will be added to all data requests in case the Table is bound against
7098
7958
  * an OData service.
7959
+ *
7960
+ * @returns Reference to `this` in order to allow method chaining
7099
7961
  */
7100
7962
  setThreshold(
7101
7963
  /**
@@ -7107,6 +7969,8 @@ declare namespace sap {
7107
7969
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
7108
7970
  *
7109
7971
  * Sets the aggregated {@link #getTitle title}.
7972
+ *
7973
+ * @returns Reference to `this` in order to allow method chaining
7110
7974
  */
7111
7975
  setTitle(
7112
7976
  /**
@@ -7118,6 +7982,8 @@ declare namespace sap {
7118
7982
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
7119
7983
  *
7120
7984
  * Sets the aggregated {@link #getToolbar toolbar}.
7985
+ *
7986
+ * @returns Reference to `this` in order to allow method chaining
7121
7987
  */
7122
7988
  setToolbar(
7123
7989
  /**
@@ -7133,6 +7999,8 @@ declare namespace sap {
7133
7999
  *
7134
8000
  * Please note that tooltips are not rendered for the table. The tooltip property will be set but it won't
7135
8001
  * effect the DOM.
8002
+ *
8003
+ * @returns Reference to `this` in order to allow method chaining
7136
8004
  */
7137
8005
  setTooltip(
7138
8006
  /**
@@ -7148,6 +8016,8 @@ declare namespace sap {
7148
8016
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7149
8017
  *
7150
8018
  * Default value is `10`.
8019
+ *
8020
+ * @returns Reference to `this` in order to allow method chaining
7151
8021
  */
7152
8022
  setVisibleRowCount(
7153
8023
  /**
@@ -7179,6 +8049,8 @@ declare namespace sap {
7179
8049
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7180
8050
  *
7181
8051
  * Default value is `Fixed`.
8052
+ *
8053
+ * @returns Reference to `this` in order to allow method chaining
7182
8054
  */
7183
8055
  setVisibleRowCountMode(
7184
8056
  /**
@@ -7194,6 +8066,8 @@ declare namespace sap {
7194
8066
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7195
8067
  *
7196
8068
  * Default value is `'auto'`.
8069
+ *
8070
+ * @returns Reference to `this` in order to allow method chaining
7197
8071
  */
7198
8072
  setWidth(
7199
8073
  /**
@@ -7220,10 +8094,14 @@ declare namespace sap {
7220
8094
  ): void;
7221
8095
  /**
7222
8096
  * Unbinds aggregation {@link #getColumns columns} from model data.
8097
+ *
8098
+ * @returns Reference to `this` in order to allow method chaining
7223
8099
  */
7224
8100
  unbindColumns(): this;
7225
8101
  /**
7226
8102
  * Unbinds aggregation {@link #getRows rows} from model data.
8103
+ *
8104
+ * @returns Reference to `this` in order to allow method chaining
7227
8105
  */
7228
8106
  unbindRows(): this;
7229
8107
  }
@@ -7269,6 +8147,8 @@ declare namespace sap {
7269
8147
  * it with the information contained in `oClassInfo`.
7270
8148
  *
7271
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
7272
8152
  */
7273
8153
  static extend<T extends Record<string, unknown>>(
7274
8154
  /**
@@ -7287,6 +8167,8 @@ declare namespace sap {
7287
8167
  ): Function;
7288
8168
  /**
7289
8169
  * Returns a metadata object for class sap.ui.table.TablePersoController.
8170
+ *
8171
+ * @returns Metadata object describing this class
7290
8172
  */
7291
8173
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
7292
8174
  /**
@@ -7295,6 +8177,8 @@ declare namespace sap {
7295
8177
  * Auto save state
7296
8178
  *
7297
8179
  * Default value is `true`.
8180
+ *
8181
+ * @returns Value of property `autoSave`
7298
8182
  */
7299
8183
  getAutoSave(): boolean;
7300
8184
  /**
@@ -7305,6 +8189,8 @@ declare namespace sap {
7305
8189
  * Table and the Column. Basically this will be more stable than using the auto IDs.
7306
8190
  *
7307
8191
  * Default value is `"persoKey"`.
8192
+ *
8193
+ * @returns Value of property `customDataKey`
7308
8194
  */
7309
8195
  getCustomDataKey(): string;
7310
8196
  /**
@@ -7314,6 +8200,8 @@ declare namespace sap {
7314
8200
  * - getPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7315
8201
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7316
8202
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
8203
+ *
8204
+ * @returns Value of property `persoService`
7317
8205
  */
7318
8206
  getPersoService(): any;
7319
8207
  /**
@@ -7329,6 +8217,8 @@ declare namespace sap {
7329
8217
  *
7330
8218
  *
7331
8219
  * Default value is `Default`.
8220
+ *
8221
+ * @returns Value of property `resetAllMode`
7332
8222
  */
7333
8223
  getResetAllMode(): sap.ui.table.ResetAllMode;
7334
8224
  /**
@@ -7338,6 +8228,8 @@ declare namespace sap {
7338
8228
  *
7339
8229
  *
7340
8230
  * Default value is `true`.
8231
+ *
8232
+ * @returns Value of property `showResetAll`
7341
8233
  */
7342
8234
  getShowResetAll(): boolean;
7343
8235
  /**
@@ -7355,10 +8247,14 @@ declare namespace sap {
7355
8247
  openDialog(mSettings: object): void;
7356
8248
  /**
7357
8249
  * Refresh the personalizations (reloads data from service).
8250
+ *
8251
+ * @returns `jQuery Promise` which is resolved once the refresh is finished
7358
8252
  */
7359
8253
  refresh(): jQuery.Promise;
7360
8254
  /**
7361
8255
  * Saves the current personalization state.
8256
+ *
8257
+ * @returns `jQuery Promise` which is resolved once the save is finished
7362
8258
  */
7363
8259
  savePersonalizations(): jQuery.Promise;
7364
8260
  /**
@@ -7369,6 +8265,8 @@ declare namespace sap {
7369
8265
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7370
8266
  *
7371
8267
  * Default value is `true`.
8268
+ *
8269
+ * @returns Reference to `this` in order to allow method chaining
7372
8270
  */
7373
8271
  setAutoSave(
7374
8272
  /**
@@ -7386,6 +8284,8 @@ declare namespace sap {
7386
8284
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7387
8285
  *
7388
8286
  * Default value is `"persoKey"`.
8287
+ *
8288
+ * @returns Reference to `this` in order to allow method chaining
7389
8289
  */
7390
8290
  setCustomDataKey(
7391
8291
  /**
@@ -7402,6 +8302,8 @@ declare namespace sap {
7402
8302
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7403
8303
  *
7404
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
7405
8307
  */
7406
8308
  setPersoService(
7407
8309
  /**
@@ -7424,6 +8326,8 @@ declare namespace sap {
7424
8326
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7425
8327
  *
7426
8328
  * Default value is `Default`.
8329
+ *
8330
+ * @returns Reference to `this` in order to allow method chaining
7427
8331
  */
7428
8332
  setResetAllMode(
7429
8333
  /**
@@ -7440,6 +8344,8 @@ declare namespace sap {
7440
8344
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7441
8345
  *
7442
8346
  * Default value is `true`.
8347
+ *
8348
+ * @returns Reference to `this` in order to allow method chaining
7443
8349
  */
7444
8350
  setShowResetAll(
7445
8351
  /**
@@ -7449,6 +8355,8 @@ declare namespace sap {
7449
8355
  ): this;
7450
8356
  /**
7451
8357
  * Sets the associated {@link #getTable table}.
8358
+ *
8359
+ * @returns Reference to `this` in order to allow method chaining
7452
8360
  */
7453
8361
  setTable(
7454
8362
  /**
@@ -7506,6 +8414,8 @@ declare namespace sap {
7506
8414
  * information contained in `oClassInfo`.
7507
8415
  *
7508
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
7509
8419
  */
7510
8420
  static extend<T extends Record<string, unknown>>(
7511
8421
  /**
@@ -7524,6 +8434,8 @@ declare namespace sap {
7524
8434
  ): Function;
7525
8435
  /**
7526
8436
  * Returns a metadata object for class sap.ui.table.TreeTable.
8437
+ *
8438
+ * @returns Metadata object describing this class
7527
8439
  */
7528
8440
  static getMetadata(): sap.ui.core.ElementMetadata;
7529
8441
  /**
@@ -7532,6 +8444,8 @@ declare namespace sap {
7532
8444
  *
7533
8445
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
7534
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
7535
8449
  */
7536
8450
  addSelectionInterval(
7537
8451
  /**
@@ -7551,6 +8465,8 @@ declare namespace sap {
7551
8465
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7552
8466
  *
7553
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
7554
8470
  */
7555
8471
  attachToggleOpenState(
7556
8472
  /**
@@ -7575,6 +8491,8 @@ declare namespace sap {
7575
8491
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7576
8492
  *
7577
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
7578
8496
  */
7579
8497
  attachToggleOpenState(
7580
8498
  /**
@@ -7588,6 +8506,8 @@ declare namespace sap {
7588
8506
  ): this;
7589
8507
  /**
7590
8508
  * Collapses one or more rows.
8509
+ *
8510
+ * @returns `this` to allow method chaining
7591
8511
  */
7592
8512
  collapse(
7593
8513
  /**
@@ -7597,6 +8517,8 @@ declare namespace sap {
7597
8517
  ): this;
7598
8518
  /**
7599
8519
  * Collapses all nodes (and lower if collapseRecursive is activated)
8520
+ *
8521
+ * @returns `this` to allow method chaining
7600
8522
  */
7601
8523
  collapseAll(): this;
7602
8524
  /**
@@ -7604,6 +8526,8 @@ declare namespace sap {
7604
8526
  * this `sap.ui.table.TreeTable`.
7605
8527
  *
7606
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
7607
8531
  */
7608
8532
  detachToggleOpenState(
7609
8533
  /**
@@ -7617,6 +8541,8 @@ declare namespace sap {
7617
8541
  ): this;
7618
8542
  /**
7619
8543
  * Expands one or more rows.
8544
+ *
8545
+ * @returns `this` to allow method chaining
7620
8546
  */
7621
8547
  expand(
7622
8548
  /**
@@ -7627,10 +8553,12 @@ declare namespace sap {
7627
8553
  /**
7628
8554
  * Expands all nodes starting from the root level to the given level 'iLevel'.
7629
8555
  *
7630
- * Only supported with ODataModel v2, when running in OperationMode.Client or OperationMode.Auto. Fully
7631
- * 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`.
7632
8558
  *
7633
8559
  * Please also see `sap.ui.model.odata.OperationMode`.
8560
+ *
8561
+ * @returns a reference on the TreeTable control, can be used for chaining
7634
8562
  */
7635
8563
  expandToLevel(
7636
8564
  /**
@@ -7640,6 +8568,8 @@ declare namespace sap {
7640
8568
  ): this;
7641
8569
  /**
7642
8570
  * Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
8571
+ *
8572
+ * @returns Reference to `this` in order to allow method chaining
7643
8573
  */
7644
8574
  fireToggleOpenState(
7645
8575
  /**
@@ -7684,6 +8614,8 @@ declare namespace sap {
7684
8614
  *
7685
8615
  *
7686
8616
  * Default value is `true`.
8617
+ *
8618
+ * @returns Value of property `collapseRecursive`
7687
8619
  */
7688
8620
  getCollapseRecursive(): boolean;
7689
8621
  /**
@@ -7716,6 +8648,8 @@ declare namespace sap {
7716
8648
  *
7717
8649
  *
7718
8650
  * Default value is `false`.
8651
+ *
8652
+ * @returns Value of property `expandFirstLevel`
7719
8653
  */
7720
8654
  getExpandFirstLevel(): boolean;
7721
8655
  /**
@@ -7728,6 +8662,8 @@ declare namespace sap {
7728
8662
  * Gets current value of property {@link #getGroupHeaderProperty groupHeaderProperty}.
7729
8663
  *
7730
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`
7731
8667
  */
7732
8668
  getGroupHeaderProperty(): string;
7733
8669
  /**
@@ -7753,6 +8689,8 @@ declare namespace sap {
7753
8689
  *
7754
8690
  *
7755
8691
  * Default value is `0`.
8692
+ *
8693
+ * @returns Value of property `rootLevel`
7756
8694
  */
7757
8695
  getRootLevel(): int;
7758
8696
  /**
@@ -7761,6 +8699,8 @@ declare namespace sap {
7761
8699
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
7762
8700
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
7763
8701
  * yet loaded" to the client), will not be returned.
8702
+ *
8703
+ * @returns an array containing all selected indices
7764
8704
  */
7765
8705
  getSelectedIndices(): int[];
7766
8706
  /**
@@ -7770,10 +8710,14 @@ declare namespace sap {
7770
8710
  * used to do the grouping for an OData service on the backend and visualize this in a table.
7771
8711
  *
7772
8712
  * Default value is `false`.
8713
+ *
8714
+ * @returns Value of property `useGroupMode`
7773
8715
  */
7774
8716
  getUseGroupMode(): boolean;
7775
8717
  /**
7776
8718
  * Checks whether the row is expanded or collapsed.
8719
+ *
8720
+ * @returns `true` if the row is expanded, `false` if it is collapsed
7777
8721
  */
7778
8722
  isExpanded(
7779
8723
  /**
@@ -7784,6 +8728,8 @@ declare namespace sap {
7784
8728
  /**
7785
8729
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
7786
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
7787
8733
  */
7788
8734
  removeSelectionInterval(
7789
8735
  /**
@@ -7802,6 +8748,8 @@ declare namespace sap {
7802
8748
  * tree are selected. Additional rows or tree nodes that come into view through scrolling or paging are
7803
8749
  * also selected immediately as soon as they get visible. However, `SelectAll` does not retrieve any data
7804
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
7805
8753
  */
7806
8754
  selectAll(): this;
7807
8755
  /**
@@ -7830,6 +8778,8 @@ declare namespace sap {
7830
8778
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7831
8779
  *
7832
8780
  * Default value is `true`.
8781
+ *
8782
+ * @returns Reference to `this` in order to allow method chaining
7833
8783
  */
7834
8784
  setCollapseRecursive(
7835
8785
  /**
@@ -7843,6 +8793,8 @@ declare namespace sap {
7843
8793
  * The property `enableGrouping` is not supported by the `TreeTable` control.
7844
8794
  * See:
7845
8795
  * sap.ui.table.TreeTable#setUseGroupMode
8796
+ *
8797
+ * @returns Reference to `this` in order to allow method chaining
7846
8798
  */
7847
8799
  setEnableGrouping(bValue: boolean): this;
7848
8800
  /**
@@ -7871,6 +8823,8 @@ declare namespace sap {
7871
8823
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7872
8824
  *
7873
8825
  * Default value is `false`.
8826
+ *
8827
+ * @returns Reference to `this` in order to allow method chaining
7874
8828
  */
7875
8829
  setExpandFirstLevel(
7876
8830
  /**
@@ -7884,6 +8838,8 @@ declare namespace sap {
7884
8838
  * **This property is not supportd for the TreeTable and will be ignored!**
7885
8839
  *
7886
8840
  * Default value is `0`
8841
+ *
8842
+ * @returns `this` to allow method chaining
7887
8843
  */
7888
8844
  setFixedRowCount(
7889
8845
  /**
@@ -7895,6 +8851,8 @@ declare namespace sap {
7895
8851
  * @deprecated (since 1.28)
7896
8852
  *
7897
8853
  * The `groupBy` association is not supported by the `TreeTable` control.
8854
+ *
8855
+ * @returns Reference to `this` in order to allow method chaining
7898
8856
  */
7899
8857
  setGroupBy(oColumn: sap.ui.table.Column | sap.ui.core.ID): this;
7900
8858
  /**
@@ -7903,6 +8861,8 @@ declare namespace sap {
7903
8861
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
7904
8862
  *
7905
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
7906
8866
  */
7907
8867
  setGroupHeaderProperty(
7908
8868
  /**
@@ -7935,6 +8895,8 @@ declare namespace sap {
7935
8895
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7936
8896
  *
7937
8897
  * Default value is `0`.
8898
+ *
8899
+ * @returns Reference to `this` in order to allow method chaining
7938
8900
  */
7939
8901
  setRootLevel(
7940
8902
  /**
@@ -7946,6 +8908,8 @@ declare namespace sap {
7946
8908
  * Sets the selected index In a TreeTable you can only select indices, which correspond to the currently
7947
8909
  * visualized tree. Invisible tree nodes (e.g. collapsed child nodes) can not be selected via Index, because
7948
8910
  * they do not correspond to a TreeTable row.
8911
+ *
8912
+ * @returns a reference on the TreeTable control, can be used for chaining
7949
8913
  */
7950
8914
  setSelectedIndex(
7951
8915
  /**
@@ -7957,6 +8921,8 @@ declare namespace sap {
7957
8921
  * Sets the selection of the TreeTable to the given range (including boundaries). Beware: The previous selection
7958
8922
  * will be lost/overridden. If this is not wanted, please use "addSelectionInterval" and "removeSelectionInterval".
7959
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
7960
8926
  */
7961
8927
  setSelectionInterval(
7962
8928
  /**
@@ -7978,6 +8944,8 @@ declare namespace sap {
7978
8944
  * **Note:** In flat mode the user of the table cannot expand or collapse certain nodes and the hierarchy
7979
8945
  * is not visible to the user. The caller of this function has to ensure to use this option only with non-hierarchical
7980
8946
  * data.
8947
+ *
8948
+ * @returns Reference to `this` in order to allow method chaining
7981
8949
  */
7982
8950
  setUseFlatMode(
7983
8951
  /**
@@ -7994,6 +8962,8 @@ declare namespace sap {
7994
8962
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7995
8963
  *
7996
8964
  * Default value is `false`.
8965
+ *
8966
+ * @returns Reference to `this` in order to allow method chaining
7997
8967
  */
7998
8968
  setUseGroupMode(
7999
8969
  /**