@openui5/ts-types 1.100.0 → 1.102.1

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.100.0
1
+ // For Library Version: 1.102.1
2
2
 
3
3
  declare namespace sap {
4
4
  namespace ui {
@@ -22,7 +22,10 @@ declare namespace sap {
22
22
  * the value of the {@link sap.ui.table.Table#getThreshold threshold} property of the related `sap.ui.table.Table`
23
23
  * control.
24
24
  */
25
- limit?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
25
+ limit?:
26
+ | int
27
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
28
+ | `{${string}}`;
26
29
 
27
30
  /**
28
31
  * @SINCE 1.71
@@ -31,14 +34,16 @@ declare namespace sap {
31
34
  */
32
35
  enableNotification?:
33
36
  | boolean
34
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
37
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
38
+ | `{${string}}`;
35
39
 
36
40
  /**
37
41
  * Show header selector
38
42
  */
39
43
  showHeaderSelector?:
40
44
  | boolean
41
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
45
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
46
+ | `{${string}}`;
42
47
 
43
48
  /**
44
49
  * Selection mode of the plugin. This property controls whether single or multiple rows can be selected.
@@ -47,7 +52,8 @@ declare namespace sap {
47
52
  */
48
53
  selectionMode?:
49
54
  | sap.ui.table.SelectionMode
50
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
55
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
56
+ | `{${string}}`;
51
57
 
52
58
  /**
53
59
  * This event is fired when the selection is changed.
@@ -96,6 +102,8 @@ declare namespace sap {
96
102
  * enriches it with the information contained in `oClassInfo`.
97
103
  *
98
104
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.plugins.SelectionPlugin.extend}.
105
+ *
106
+ * @returns Created class / constructor function
99
107
  */
100
108
  static extend<T extends Record<string, unknown>>(
101
109
  /**
@@ -117,6 +125,8 @@ declare namespace sap {
117
125
  ): Function;
118
126
  /**
119
127
  * Returns a metadata object for class sap.ui.table.plugins.MultiSelectionPlugin.
128
+ *
129
+ * @returns Metadata object describing this class
120
130
  */
121
131
  static getMetadata(): sap.ui.core.ElementMetadata;
122
132
  /**
@@ -125,6 +135,8 @@ declare namespace sap {
125
135
  *
126
136
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
127
137
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
138
+ *
139
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
128
140
  */
129
141
  addSelectionInterval(
130
142
  /**
@@ -149,6 +161,8 @@ declare namespace sap {
149
161
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
150
162
  *
151
163
  * This event is fired when the selection is changed.
164
+ *
165
+ * @returns Reference to `this` in order to allow method chaining
152
166
  */
153
167
  attachSelectionChange(
154
168
  /**
@@ -174,6 +188,8 @@ declare namespace sap {
174
188
  * otherwise it will be bound to this `sap.ui.table.plugins.MultiSelectionPlugin` itself.
175
189
  *
176
190
  * This event is fired when the selection is changed.
191
+ *
192
+ * @returns Reference to `this` in order to allow method chaining
177
193
  */
178
194
  attachSelectionChange(
179
195
  /**
@@ -201,6 +217,8 @@ declare namespace sap {
201
217
  * this `sap.ui.table.plugins.MultiSelectionPlugin`.
202
218
  *
203
219
  * The passed function and listener object must match the ones used for event registration.
220
+ *
221
+ * @returns Reference to `this` in order to allow method chaining
204
222
  */
205
223
  detachSelectionChange(
206
224
  /**
@@ -214,6 +232,8 @@ declare namespace sap {
214
232
  ): this;
215
233
  /**
216
234
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
235
+ *
236
+ * @returns Reference to `this` in order to allow method chaining
217
237
  */
218
238
  fireSelectionChange(
219
239
  /**
@@ -242,6 +262,8 @@ declare namespace sap {
242
262
  * Enables notifications that are displayed once a selection has been limited.
243
263
  *
244
264
  * Default value is `false`.
265
+ *
266
+ * @returns Value of property `enableNotification`
245
267
  */
246
268
  getEnableNotification(): boolean;
247
269
  /**
@@ -258,10 +280,14 @@ declare namespace sap {
258
280
  * control.
259
281
  *
260
282
  * Default value is `200`.
283
+ *
284
+ * @returns Value of property `limit`
261
285
  */
262
286
  getLimit(): int;
263
287
  /**
264
288
  * Zero-based indices of selected indices, wrapped in an array. An empty array means nothing has been selected.
289
+ *
290
+ * @returns An array containing all selected indices
265
291
  */
266
292
  getSelectedIndices(): int[];
267
293
  /**
@@ -272,6 +298,8 @@ declare namespace sap {
272
298
  * removed.
273
299
  *
274
300
  * Default value is `MultiToggle`.
301
+ *
302
+ * @returns Value of property `selectionMode`
275
303
  */
276
304
  getSelectionMode(): sap.ui.table.SelectionMode;
277
305
  /**
@@ -280,10 +308,14 @@ declare namespace sap {
280
308
  * Show header selector
281
309
  *
282
310
  * Default value is `true`.
311
+ *
312
+ * @returns Value of property `showHeaderSelector`
283
313
  */
284
314
  getShowHeaderSelector(): boolean;
285
315
  /**
286
316
  * Returns the information whether the given index is selected.
317
+ *
318
+ * @returns `true` if the index is selected
287
319
  */
288
320
  isIndexSelected(
289
321
  /**
@@ -313,6 +345,8 @@ declare namespace sap {
313
345
  /**
314
346
  * Requests the binding contexts and adds all indices to the selection if the limit is disabled or the binding
315
347
  * length is smaller then the limit.
348
+ *
349
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
316
350
  */
317
351
  selectAll(
318
352
  /**
@@ -331,6 +365,8 @@ declare namespace sap {
331
365
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
332
366
  *
333
367
  * Default value is `false`.
368
+ *
369
+ * @returns Reference to `this` in order to allow method chaining
334
370
  */
335
371
  setEnableNotification(
336
372
  /**
@@ -354,6 +390,8 @@ declare namespace sap {
354
390
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
355
391
  *
356
392
  * Default value is `200`.
393
+ *
394
+ * @returns Reference to `this` in order to allow method chaining
357
395
  */
358
396
  setLimit(
359
397
  /**
@@ -363,6 +401,8 @@ declare namespace sap {
363
401
  ): this;
364
402
  /**
365
403
  * Requests the context and sets the selected index to `iIndex`.
404
+ *
405
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
366
406
  */
367
407
  setSelectedIndex(
368
408
  /**
@@ -381,6 +421,8 @@ declare namespace sap {
381
421
  *
382
422
  * If the number of indices in the range is greater than the value of the `limit` property, only n=limit
383
423
  * indices, starting from `iIndexFrom`, are selected. The table is scrolled to display the index last selected.
424
+ *
425
+ * @returns A Promise that resolves after the selection has been completed or is rejected with an error
384
426
  */
385
427
  setSelectionInterval(
386
428
  /**
@@ -407,6 +449,8 @@ declare namespace sap {
407
449
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
408
450
  *
409
451
  * Default value is `MultiToggle`.
452
+ *
453
+ * @returns Reference to `this` in order to allow method chaining
410
454
  */
411
455
  setSelectionMode(
412
456
  /**
@@ -422,6 +466,8 @@ declare namespace sap {
422
466
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
423
467
  *
424
468
  * Default value is `true`.
469
+ *
470
+ * @returns Reference to `this` in order to allow method chaining
425
471
  */
426
472
  setShowHeaderSelector(
427
473
  /**
@@ -454,6 +500,8 @@ declare namespace sap {
454
500
  * it with the information contained in `oClassInfo`.
455
501
  *
456
502
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
503
+ *
504
+ * @returns Created class / constructor function
457
505
  */
458
506
  static extend<T extends Record<string, unknown>>(
459
507
  /**
@@ -472,6 +520,8 @@ declare namespace sap {
472
520
  ): Function;
473
521
  /**
474
522
  * Returns a metadata object for class sap.ui.table.plugins.SelectionPlugin.
523
+ *
524
+ * @returns Metadata object describing this class
475
525
  */
476
526
  static getMetadata(): sap.ui.core.ElementMetadata;
477
527
  /**
@@ -482,6 +532,8 @@ declare namespace sap {
482
532
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
483
533
  *
484
534
  * This event is fired when the selection is changed.
535
+ *
536
+ * @returns Reference to `this` in order to allow method chaining
485
537
  */
486
538
  attachSelectionChange(
487
539
  /**
@@ -507,6 +559,8 @@ declare namespace sap {
507
559
  * otherwise it will be bound to this `sap.ui.table.plugins.SelectionPlugin` itself.
508
560
  *
509
561
  * This event is fired when the selection is changed.
562
+ *
563
+ * @returns Reference to `this` in order to allow method chaining
510
564
  */
511
565
  attachSelectionChange(
512
566
  /**
@@ -524,6 +578,8 @@ declare namespace sap {
524
578
  * this `sap.ui.table.plugins.SelectionPlugin`.
525
579
  *
526
580
  * The passed function and listener object must match the ones used for event registration.
581
+ *
582
+ * @returns Reference to `this` in order to allow method chaining
527
583
  */
528
584
  detachSelectionChange(
529
585
  /**
@@ -537,6 +593,8 @@ declare namespace sap {
537
593
  ): this;
538
594
  /**
539
595
  * Fires event {@link #event:selectionChange selectionChange} to attached listeners.
596
+ *
597
+ * @returns Reference to `this` in order to allow method chaining
540
598
  */
541
599
  fireSelectionChange(
542
600
  /**
@@ -559,26 +617,36 @@ declare namespace sap {
559
617
  /**
560
618
  * If defined a sum for this column is calculated
561
619
  */
562
- summed?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
620
+ summed?:
621
+ | boolean
622
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
623
+ | `{${string}}`;
563
624
 
564
625
  /**
565
626
  * Specifies that the dimension referred to by the column shall be included in the granularity of the data
566
627
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
567
628
  */
568
- inResult?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
629
+ inResult?:
630
+ | boolean
631
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
632
+ | `{${string}}`;
569
633
 
570
634
  /**
571
635
  * Specifies whether the column is displayed within the table even if it is grouped or not. A grouped column
572
636
  * has the same value for every rows within the group.
573
637
  */
574
- showIfGrouped?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
638
+ showIfGrouped?:
639
+ | boolean
640
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
641
+ | `{${string}}`;
575
642
 
576
643
  /**
577
644
  * If the column is grouped, this formatter is used to format the value in the group header
578
645
  */
579
646
  groupHeaderFormatter?:
580
647
  | any
581
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
648
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
649
+ | `{${string}}`;
582
650
  }
583
651
 
584
652
  interface $AnalyticalColumnMenuSettings
@@ -606,7 +674,10 @@ declare namespace sap {
606
674
  * });
607
675
  * ```
608
676
  */
609
- sumOnTop?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
677
+ sumOnTop?:
678
+ | boolean
679
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
680
+ | `{${string}}`;
610
681
 
611
682
  /**
612
683
  * @deprecated (since 1.44) - replaced by the `numberOfExpandedLevels` binding parameter
@@ -630,7 +701,8 @@ declare namespace sap {
630
701
  */
631
702
  numberOfExpandedLevels?:
632
703
  | int
633
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
704
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
705
+ | `{${string}}`;
634
706
 
635
707
  /**
636
708
  * @deprecated (since 1.44) - replaced by the `autoExpandMode` binding parameter
@@ -661,7 +733,8 @@ declare namespace sap {
661
733
  */
662
734
  columnVisibilityMenuSorter?:
663
735
  | any
664
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
736
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
737
+ | `{${string}}`;
665
738
 
666
739
  /**
667
740
  * @deprecated (since 1.76) - replaced by the `collapseRecursive` binding parameter
@@ -685,14 +758,18 @@ declare namespace sap {
685
758
  */
686
759
  collapseRecursive?:
687
760
  | boolean
688
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
761
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
762
+ | `{${string}}`;
689
763
 
690
764
  /**
691
765
  * @deprecated (since 1.21.2) - replaced by {@link sap.ui.table.Table#setShowOverlay}
692
766
  *
693
767
  * If dirty the content of the Table will be overlayed.
694
768
  */
695
- dirty?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
769
+ dirty?:
770
+ | boolean
771
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
772
+ | `{${string}}`;
696
773
  }
697
774
 
698
775
  interface $ColumnSettings extends sap.ui.core.$ElementSettings {
@@ -705,7 +782,8 @@ declare namespace sap {
705
782
  */
706
783
  width?:
707
784
  | sap.ui.core.CSSSize
708
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
785
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
786
+ | `{${string}}`;
709
787
 
710
788
  /**
711
789
  * @SINCE 1.44.1
@@ -715,7 +793,10 @@ declare namespace sap {
715
793
  * If a user adjusts the column width manually, the column width can become smaller. Minimal column width
716
794
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
717
795
  */
718
- minWidth?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
796
+ minWidth?:
797
+ | int
798
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
799
+ | `{${string}}`;
719
800
 
720
801
  /**
721
802
  * @deprecated (since 1.44) - this property has no effect. Use the property `minWidth` in combination with
@@ -726,13 +807,19 @@ declare namespace sap {
726
807
  * width. If all columns are set to not be flexible, an extra "dummy" column will be created at the end
727
808
  * of the table.
728
809
  */
729
- flexible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
810
+ flexible?:
811
+ | boolean
812
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
813
+ | `{${string}}`;
730
814
 
731
815
  /**
732
816
  * If set to true, the column can be resized either using the resize bar (by mouse) or using the keyboard
733
817
  * (SHIFT + Left/Right Arrow keys)
734
818
  */
735
- resizable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
819
+ resizable?:
820
+ | boolean
821
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
822
+ | `{${string}}`;
736
823
 
737
824
  /**
738
825
  * Horizontal alignment of the column content. Controls with a text align do not inherit the horizontal
@@ -740,13 +827,17 @@ declare namespace sap {
740
827
  */
741
828
  hAlign?:
742
829
  | sap.ui.core.HorizontalAlign
743
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
830
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
831
+ | `{${string}}`;
744
832
 
745
833
  /**
746
834
  * Indicates if the column is sorted. This property only controls if a sort indicator is displayed in the
747
835
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
748
836
  */
749
- sorted?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
837
+ sorted?:
838
+ | boolean
839
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
840
+ | `{${string}}`;
750
841
 
751
842
  /**
752
843
  * This property indicates the sort direction (Ascending or Descending). The corresponding icon will be
@@ -754,7 +845,8 @@ declare namespace sap {
754
845
  */
755
846
  sortOrder?:
756
847
  | sap.ui.table.SortOrder
757
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
848
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
849
+ | `{${string}}`;
758
850
 
759
851
  /**
760
852
  * Specifies the binding property on which the column will sort. Since the column template may have composite
@@ -771,7 +863,10 @@ declare namespace sap {
771
863
  * the column header - it does not trigger the filter function. The column can be filtered using {@link
772
864
  * sap.ui.table.Table#filter}.
773
865
  */
774
- filtered?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
866
+ filtered?:
867
+ | boolean
868
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
869
+ | `{${string}}`;
775
870
 
776
871
  /**
777
872
  * Specifies the binding property on which the column shall be filtered. Since the column template may have
@@ -828,17 +923,26 @@ declare namespace sap {
828
923
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
829
924
  * #setFilterType} instead.
830
925
  */
831
- filterType?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
926
+ filterType?:
927
+ | any
928
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
929
+ | `{${string}}`;
832
930
 
833
931
  /**
834
932
  * Indicates if the column is grouped.
835
933
  */
836
- grouped?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
934
+ grouped?:
935
+ | boolean
936
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
937
+ | `{${string}}`;
837
938
 
838
939
  /**
839
940
  * Invisible controls are not rendered.
840
941
  */
841
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
942
+ visible?:
943
+ | boolean
944
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
945
+ | `{${string}}`;
842
946
 
843
947
  /**
844
948
  * @SINCE 1.11.1
@@ -856,7 +960,8 @@ declare namespace sap {
856
960
  */
857
961
  showFilterMenuEntry?:
858
962
  | boolean
859
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
963
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
964
+ | `{${string}}`;
860
965
 
861
966
  /**
862
967
  * @SINCE 1.13.0
@@ -865,7 +970,8 @@ declare namespace sap {
865
970
  */
866
971
  showSortMenuEntry?:
867
972
  | boolean
868
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
973
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
974
+ | `{${string}}`;
869
975
 
870
976
  /**
871
977
  * If this property is set, a span is applied for the header. When moving columns, all columns which are
@@ -875,7 +981,10 @@ declare namespace sap {
875
981
  * Only columns with a span equal to 1 can have a column menu. When setting a column to fixed, all columns
876
982
  * which are part of the header with the greatest span will be set to fixed.
877
983
  */
878
- headerSpan?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
984
+ headerSpan?:
985
+ | any
986
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
987
+ | `{${string}}`;
879
988
 
880
989
  /**
881
990
  * @SINCE 1.21.1
@@ -886,7 +995,10 @@ declare namespace sap {
886
995
  * sap.m.Input, sap.ui.commons.TextView, sap.ui.commons.Label, sap.ui.commons.Link and sap.ui.commons.TextField,
887
996
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
888
997
  */
889
- autoResizable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
998
+ autoResizable?:
999
+ | boolean
1000
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1001
+ | `{${string}}`;
890
1002
 
891
1003
  /**
892
1004
  * Label of the column which is displayed in the column header. This aggregation is for the standard behavior,
@@ -907,7 +1019,8 @@ declare namespace sap {
907
1019
  multiLabels?:
908
1020
  | sap.ui.core.Control[]
909
1021
  | sap.ui.core.Control
910
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1022
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1023
+ | `{${string}}`;
911
1024
 
912
1025
  /**
913
1026
  * Template (cell renderer) of this column. A template is decoupled from the column. Each time the template's
@@ -953,14 +1066,18 @@ declare namespace sap {
953
1066
  cells?:
954
1067
  | sap.ui.core.Control[]
955
1068
  | sap.ui.core.Control
956
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1069
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1070
+ | `{${string}}`;
957
1071
  }
958
1072
 
959
1073
  interface $RowActionSettings extends sap.ui.core.$ControlSettings {
960
1074
  /**
961
1075
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
962
1076
  */
963
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1077
+ visible?:
1078
+ | boolean
1079
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1080
+ | `{${string}}`;
964
1081
 
965
1082
  /**
966
1083
  * The action items which should be displayed.
@@ -968,19 +1085,26 @@ declare namespace sap {
968
1085
  items?:
969
1086
  | sap.ui.table.RowActionItem[]
970
1087
  | sap.ui.table.RowActionItem
971
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1088
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1089
+ | `{${string}}`;
972
1090
  }
973
1091
 
974
1092
  interface $RowActionItemSettings extends sap.ui.core.$ElementSettings {
975
1093
  /**
976
1094
  * The icon of the item.
977
1095
  */
978
- icon?: sap.ui.core.URI | sap.ui.base.ManagedObject.PropertyBindingInfo;
1096
+ icon?:
1097
+ | sap.ui.core.URI
1098
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1099
+ | `{${string}}`;
979
1100
 
980
1101
  /**
981
1102
  * Whether the item should be visible on the screen.
982
1103
  */
983
- visible?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1104
+ visible?:
1105
+ | boolean
1106
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1107
+ | `{${string}}`;
984
1108
 
985
1109
  /**
986
1110
  * The text of the item. It is used as tooltip and for accessibility purposes.
@@ -993,7 +1117,8 @@ declare namespace sap {
993
1117
  */
994
1118
  type?:
995
1119
  | sap.ui.table.RowActionType
996
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1120
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1121
+ | `{${string}}`;
997
1122
 
998
1123
  /**
999
1124
  * The `press` is fired when the user triggers the corresponding action.
@@ -1036,7 +1161,10 @@ declare namespace sap {
1036
1161
  * If set to `true`, a navigation indicator is displayed at the end of the row. **Note:** This property
1037
1162
  * must be set for **one** row only.
1038
1163
  */
1039
- navigated?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1164
+ navigated?:
1165
+ | boolean
1166
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1167
+ | `{${string}}`;
1040
1168
  }
1041
1169
 
1042
1170
  interface $TableSettings extends sap.ui.core.$ControlSettings {
@@ -1045,7 +1173,8 @@ declare namespace sap {
1045
1173
  */
1046
1174
  width?:
1047
1175
  | sap.ui.core.CSSSize
1048
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1176
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1177
+ | `{${string}}`;
1049
1178
 
1050
1179
  /**
1051
1180
  * Row height in pixel.
@@ -1062,7 +1191,10 @@ declare namespace sap {
1062
1191
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
1063
1192
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
1064
1193
  */
1065
- rowHeight?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1194
+ rowHeight?:
1195
+ | int
1196
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1197
+ | `{${string}}`;
1066
1198
 
1067
1199
  /**
1068
1200
  * Header row height in pixel. If a value greater than 0 is set, it overrides the height defined in the
@@ -1075,7 +1207,8 @@ declare namespace sap {
1075
1207
  */
1076
1208
  columnHeaderHeight?:
1077
1209
  | int
1078
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1210
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1211
+ | `{${string}}`;
1079
1212
 
1080
1213
  /**
1081
1214
  * Flag whether the column header is visible or not.
@@ -1085,17 +1218,24 @@ declare namespace sap {
1085
1218
  */
1086
1219
  columnHeaderVisible?:
1087
1220
  | boolean
1088
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1221
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1222
+ | `{${string}}`;
1089
1223
 
1090
1224
  /**
1091
1225
  * Number of visible rows of the table.
1092
1226
  */
1093
- visibleRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1227
+ visibleRowCount?:
1228
+ | int
1229
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1230
+ | `{${string}}`;
1094
1231
 
1095
1232
  /**
1096
1233
  * First visible row.
1097
1234
  */
1098
- firstVisibleRow?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1235
+ firstVisibleRow?:
1236
+ | int
1237
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1238
+ | `{${string}}`;
1099
1239
 
1100
1240
  /**
1101
1241
  * Selection mode of the Table. This property controls whether single or multiple rows can be selected and
@@ -1107,7 +1247,8 @@ declare namespace sap {
1107
1247
  */
1108
1248
  selectionMode?:
1109
1249
  | sap.ui.table.SelectionMode
1110
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1250
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1251
+ | `{${string}}`;
1111
1252
 
1112
1253
  /**
1113
1254
  * Selection behavior of the Table. This property defines whether the row selector is displayed and whether
@@ -1117,7 +1258,8 @@ declare namespace sap {
1117
1258
  */
1118
1259
  selectionBehavior?:
1119
1260
  | sap.ui.table.SelectionBehavior
1120
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1261
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1262
+ | `{${string}}`;
1121
1263
 
1122
1264
  /**
1123
1265
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices} and {@link sap.ui.table.Table#setSelectedIndex}
@@ -1128,13 +1270,19 @@ declare namespace sap {
1128
1270
  * invalid, the call is ignored. **Note:** If the rows of the table are bound, the value of the property
1129
1271
  * is reset to -1. If a selection plugin is applied to the table, the property is not bindable.
1130
1272
  */
1131
- selectedIndex?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1273
+ selectedIndex?:
1274
+ | int
1275
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1276
+ | `{${string}}`;
1132
1277
 
1133
1278
  /**
1134
1279
  * Flag whether the controls of the Table are editable or not (currently this only controls the background
1135
1280
  * color in certain themes!)
1136
1281
  */
1137
- editable?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1282
+ editable?:
1283
+ | boolean
1284
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1285
+ | `{${string}}`;
1138
1286
 
1139
1287
  /**
1140
1288
  * @deprecated (since 1.38)
@@ -1144,23 +1292,28 @@ declare namespace sap {
1144
1292
  */
1145
1293
  navigationMode?:
1146
1294
  | sap.ui.table.NavigationMode
1147
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1295
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1296
+ | `{${string}}`;
1148
1297
 
1149
1298
  /**
1150
- * The `threshold` defines how many additional (not yet visible records) shall be pre-fetched to enable
1151
- * smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount` is
1152
- * 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
1153
- * is lower than the `visibleRowCount`, the `visibleRowCount` will be used as the `threshold`. If the value
1154
- * is 0 then the thresholding is disabled.
1299
+ * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
1300
+ * enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
1301
+ * is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
1302
+ * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
1303
+ * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
1155
1304
  */
1156
- threshold?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1305
+ threshold?:
1306
+ | int
1307
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1308
+ | `{${string}}`;
1157
1309
 
1158
1310
  /**
1159
1311
  * Flag to enable or disable column reordering
1160
1312
  */
1161
1313
  enableColumnReordering?:
1162
1314
  | boolean
1163
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1315
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1316
+ | `{${string}}`;
1164
1317
 
1165
1318
  /**
1166
1319
  * @EXPERIMENTAL (since 1.28)
@@ -1183,7 +1336,8 @@ declare namespace sap {
1183
1336
  */
1184
1337
  enableGrouping?:
1185
1338
  | boolean
1186
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1339
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1340
+ | `{${string}}`;
1187
1341
 
1188
1342
  /**
1189
1343
  * Flag to show or hide the column visibility menu. This menu will get displayed in each generated column
@@ -1191,13 +1345,17 @@ declare namespace sap {
1191
1345
  */
1192
1346
  showColumnVisibilityMenu?:
1193
1347
  | boolean
1194
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1348
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1349
+ | `{${string}}`;
1195
1350
 
1196
1351
  /**
1197
1352
  * Flag whether to show the no data overlay or not once the table is empty. If set to false the table will
1198
1353
  * just show a grid of empty cells
1199
1354
  */
1200
- showNoData?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1355
+ showNoData?:
1356
+ | boolean
1357
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1358
+ | `{${string}}`;
1201
1359
 
1202
1360
  /**
1203
1361
  * @SINCE 1.9.2
@@ -1220,13 +1378,17 @@ declare namespace sap {
1220
1378
  */
1221
1379
  visibleRowCountMode?:
1222
1380
  | sap.ui.table.VisibleRowCountMode
1223
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1381
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1382
+ | `{${string}}`;
1224
1383
 
1225
1384
  /**
1226
1385
  * This property is used to set the minimum count of visible rows when the property visibleRowCountMode
1227
1386
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
1228
1387
  */
1229
- minAutoRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1388
+ minAutoRowCount?:
1389
+ | int
1390
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1391
+ | `{${string}}`;
1230
1392
 
1231
1393
  /**
1232
1394
  * Number of columns that are fixed on the left. Only columns which are not fixed can be scrolled horizontally.
@@ -1237,7 +1399,10 @@ declare namespace sap {
1237
1399
  * the value of the property and adapts the behavior in an appropriate way to ensure that the user is still
1238
1400
  * able to scroll horizontally.
1239
1401
  */
1240
- fixedColumnCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1402
+ fixedColumnCount?:
1403
+ | int
1404
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1405
+ | `{${string}}`;
1241
1406
 
1242
1407
  /**
1243
1408
  * Number of rows that are fix on the top. When you use a vertical scrollbar, only the rows which are not
@@ -1246,7 +1411,10 @@ declare namespace sap {
1246
1411
  * This property is only supported if the `rows` aggregation is bound to a {@link sap.ui.model.ClientModel
1247
1412
  * client model}.
1248
1413
  */
1249
- fixedRowCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1414
+ fixedRowCount?:
1415
+ | int
1416
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1417
+ | `{${string}}`;
1250
1418
 
1251
1419
  /**
1252
1420
  * @SINCE 1.18.7
@@ -1259,7 +1427,8 @@ declare namespace sap {
1259
1427
  */
1260
1428
  fixedBottomRowCount?:
1261
1429
  | int
1262
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1430
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1431
+ | `{${string}}`;
1263
1432
 
1264
1433
  /**
1265
1434
  * @SINCE 1.21.0
@@ -1268,7 +1437,8 @@ declare namespace sap {
1268
1437
  */
1269
1438
  enableColumnFreeze?:
1270
1439
  | boolean
1271
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1440
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1441
+ | `{${string}}`;
1272
1442
 
1273
1443
  /**
1274
1444
  * @SINCE 1.21.0
@@ -1277,7 +1447,8 @@ declare namespace sap {
1277
1447
  */
1278
1448
  enableCellFilter?:
1279
1449
  | boolean
1280
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1450
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1451
+ | `{${string}}`;
1281
1452
 
1282
1453
  /**
1283
1454
  * @SINCE 1.21.2
@@ -1285,7 +1456,10 @@ declare namespace sap {
1285
1456
  * Setting this property to true will show an overlay on top of the Table content and users cannot click
1286
1457
  * anymore on the Table content.
1287
1458
  */
1288
- showOverlay?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1459
+ showOverlay?:
1460
+ | boolean
1461
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1462
+ | `{${string}}`;
1289
1463
 
1290
1464
  /**
1291
1465
  * @SINCE 1.23.0
@@ -1295,7 +1469,8 @@ declare namespace sap {
1295
1469
  */
1296
1470
  enableSelectAll?:
1297
1471
  | boolean
1298
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1472
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1473
+ | `{${string}}`;
1299
1474
 
1300
1475
  /**
1301
1476
  * @SINCE 1.23.0
@@ -1305,7 +1480,8 @@ declare namespace sap {
1305
1480
  */
1306
1481
  enableCustomFilter?:
1307
1482
  | boolean
1308
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1483
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1484
+ | `{${string}}`;
1309
1485
 
1310
1486
  /**
1311
1487
  * @SINCE 1.27.0
@@ -1318,7 +1494,8 @@ declare namespace sap {
1318
1494
  */
1319
1495
  enableBusyIndicator?:
1320
1496
  | boolean
1321
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1497
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1498
+ | `{${string}}`;
1322
1499
 
1323
1500
  /**
1324
1501
  * @SINCE 1.45.0
@@ -1326,7 +1503,10 @@ declare namespace sap {
1326
1503
  * Number of row actions made visible which determines the width of the row action column. The values `0`,
1327
1504
  * `1` and `2` are possible.
1328
1505
  */
1329
- rowActionCount?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1506
+ rowActionCount?:
1507
+ | int
1508
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1509
+ | `{${string}}`;
1330
1510
 
1331
1511
  /**
1332
1512
  * @SINCE 1.52
@@ -1335,7 +1515,8 @@ declare namespace sap {
1335
1515
  */
1336
1516
  alternateRowColors?:
1337
1517
  | boolean
1338
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1518
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1519
+ | `{${string}}`;
1339
1520
 
1340
1521
  /**
1341
1522
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
@@ -1370,7 +1551,8 @@ declare namespace sap {
1370
1551
  extension?:
1371
1552
  | sap.ui.core.Control[]
1372
1553
  | sap.ui.core.Control
1373
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1554
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1555
+ | `{${string}}`;
1374
1556
 
1375
1557
  /**
1376
1558
  * Columns of the Table
@@ -1378,7 +1560,8 @@ declare namespace sap {
1378
1560
  columns?:
1379
1561
  | sap.ui.table.Column[]
1380
1562
  | sap.ui.table.Column
1381
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1563
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1564
+ | `{${string}}`;
1382
1565
 
1383
1566
  /**
1384
1567
  * This aggregation is managed by the table itself. It can only be used with data binding, is read-only,
@@ -1399,7 +1582,8 @@ declare namespace sap {
1399
1582
  rows?:
1400
1583
  | sap.ui.table.Row[]
1401
1584
  | sap.ui.table.Row
1402
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1585
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1586
+ | `{${string}}`;
1403
1587
 
1404
1588
  /**
1405
1589
  * The value for the noData aggregation can be either a string value or a control instance. The control
@@ -1452,7 +1636,8 @@ declare namespace sap {
1452
1636
  plugins?:
1453
1637
  | sap.ui.table.plugins.SelectionPlugin[]
1454
1638
  | sap.ui.table.plugins.SelectionPlugin
1455
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
1639
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
1640
+ | `{${string}}`;
1456
1641
 
1457
1642
  /**
1458
1643
  * @EXPERIMENTAL (since 1.28)
@@ -1587,7 +1772,10 @@ declare namespace sap {
1587
1772
  /**
1588
1773
  * Auto save state
1589
1774
  */
1590
- autoSave?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1775
+ autoSave?:
1776
+ | boolean
1777
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1778
+ | `{${string}}`;
1591
1779
 
1592
1780
  /**
1593
1781
  * Personalization Service object. Needs to have the following methods:
@@ -1595,7 +1783,10 @@ declare namespace sap {
1595
1783
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
1596
1784
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
1597
1785
  */
1598
- persoService?: any | sap.ui.base.ManagedObject.PropertyBindingInfo;
1786
+ persoService?:
1787
+ | any
1788
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1789
+ | `{${string}}`;
1599
1790
 
1600
1791
  /**
1601
1792
  * By defining a custom data key the `TablePersoController` will try to get the key for saving the perso
@@ -1607,7 +1798,10 @@ declare namespace sap {
1607
1798
  /**
1608
1799
  * Controls the visibility of the Reset button of the `TablePersoDialog`.
1609
1800
  */
1610
- showResetAll?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1801
+ showResetAll?:
1802
+ | boolean
1803
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1804
+ | `{${string}}`;
1611
1805
 
1612
1806
  /**
1613
1807
  * Controls the behavior of the Reset button of the `TablePersoDialog`.
@@ -1620,7 +1814,8 @@ declare namespace sap {
1620
1814
  */
1621
1815
  resetAllMode?:
1622
1816
  | sap.ui.table.ResetAllMode
1623
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1817
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1818
+ | `{${string}}`;
1624
1819
 
1625
1820
  /**
1626
1821
  * The target table of this controller.
@@ -1651,13 +1846,17 @@ declare namespace sap {
1651
1846
  */
1652
1847
  expandFirstLevel?:
1653
1848
  | boolean
1654
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1849
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1850
+ | `{${string}}`;
1655
1851
 
1656
1852
  /**
1657
1853
  * If group mode is enabled nodes with subitems are rendered as if they were group headers. This can be
1658
1854
  * used to do the grouping for an OData service on the backend and visualize this in a table.
1659
1855
  */
1660
- useGroupMode?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
1856
+ useGroupMode?:
1857
+ | boolean
1858
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1859
+ | `{${string}}`;
1661
1860
 
1662
1861
  /**
1663
1862
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
@@ -1688,7 +1887,8 @@ declare namespace sap {
1688
1887
  */
1689
1888
  collapseRecursive?:
1690
1889
  | boolean
1691
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
1890
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1891
+ | `{${string}}`;
1692
1892
 
1693
1893
  /**
1694
1894
  * @deprecated (since 1.76) - replaced by the `rootLevel` binding parameter
@@ -1709,7 +1909,10 @@ declare namespace sap {
1709
1909
  * });
1710
1910
  * ```
1711
1911
  */
1712
- rootLevel?: int | sap.ui.base.ManagedObject.PropertyBindingInfo;
1912
+ rootLevel?:
1913
+ | int
1914
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
1915
+ | `{${string}}`;
1713
1916
 
1714
1917
  /**
1715
1918
  * Fired when a row has been expanded or collapsed by user interaction. Only available in hierarchical mode.
@@ -1760,6 +1963,8 @@ declare namespace sap {
1760
1963
  * with the information contained in `oClassInfo`.
1761
1964
  *
1762
1965
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Column.extend}.
1966
+ *
1967
+ * @returns Created class / constructor function
1763
1968
  */
1764
1969
  static extend<T extends Record<string, unknown>>(
1765
1970
  /**
@@ -1778,12 +1983,16 @@ declare namespace sap {
1778
1983
  ): Function;
1779
1984
  /**
1780
1985
  * Returns a metadata object for class sap.ui.table.AnalyticalColumn.
1986
+ *
1987
+ * @returns Metadata object describing this class
1781
1988
  */
1782
1989
  static getMetadata(): sap.ui.core.ElementMetadata;
1783
1990
  /**
1784
1991
  * Gets current value of property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
1785
1992
  *
1786
1993
  * If the column is grouped, this formatter is used to format the value in the group header
1994
+ *
1995
+ * @returns Value of property `groupHeaderFormatter`
1787
1996
  */
1788
1997
  getGroupHeaderFormatter(): any;
1789
1998
  /**
@@ -1793,6 +2002,8 @@ declare namespace sap {
1793
2002
  * result. It allows a finer distinction between a visible/grouped/(included)inResult column.
1794
2003
  *
1795
2004
  * Default value is `false`.
2005
+ *
2006
+ * @returns Value of property `inResult`
1796
2007
  */
1797
2008
  getInResult(): boolean;
1798
2009
  /**
@@ -1800,6 +2011,8 @@ declare namespace sap {
1800
2011
  *
1801
2012
  * Defines the primary model property which is used inside the Column. In case of the analytical extension
1802
2013
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
2014
+ *
2015
+ * @returns Value of property `leadingProperty`
1803
2016
  */
1804
2017
  getLeadingProperty(): string;
1805
2018
  /**
@@ -1809,6 +2022,8 @@ declare namespace sap {
1809
2022
  * has the same value for every rows within the group.
1810
2023
  *
1811
2024
  * Default value is `false`.
2025
+ *
2026
+ * @returns Value of property `showIfGrouped`
1812
2027
  */
1813
2028
  getShowIfGrouped(): boolean;
1814
2029
  /**
@@ -1817,24 +2032,18 @@ declare namespace sap {
1817
2032
  * If defined a sum for this column is calculated
1818
2033
  *
1819
2034
  * Default value is `false`.
1820
- */
1821
- getSummed(): boolean;
1822
- /**
1823
- * Returns the information whether the column is groupable.
1824
2035
  *
1825
- * The column is groupable only if the following conditions are fulfilled:
1826
- * - The column must be child of an `AnalyticalTable`.
1827
- * - The `rows` aggregation of the table must be bound.
1828
- * - The metadata of the model must be loaded.
1829
- * - The column's `leadingProperty` must be a sortable and filterable dimension.
2036
+ * @returns Value of property `summed`
1830
2037
  */
1831
- isGroupable(): boolean;
2038
+ getSummed(): boolean;
1832
2039
  /**
1833
2040
  * Sets a new value for property {@link #getGroupHeaderFormatter groupHeaderFormatter}.
1834
2041
  *
1835
2042
  * If the column is grouped, this formatter is used to format the value in the group header
1836
2043
  *
1837
2044
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2045
+ *
2046
+ * @returns Reference to `this` in order to allow method chaining
1838
2047
  */
1839
2048
  setGroupHeaderFormatter(
1840
2049
  /**
@@ -1851,6 +2060,8 @@ declare namespace sap {
1851
2060
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1852
2061
  *
1853
2062
  * Default value is `false`.
2063
+ *
2064
+ * @returns Reference to `this` in order to allow method chaining
1854
2065
  */
1855
2066
  setInResult(
1856
2067
  /**
@@ -1865,6 +2076,8 @@ declare namespace sap {
1865
2076
  * this means the property which is grouped by for dimensions or the property which is summed for measures.
1866
2077
  *
1867
2078
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2079
+ *
2080
+ * @returns Reference to `this` in order to allow method chaining
1868
2081
  */
1869
2082
  setLeadingProperty(
1870
2083
  /**
@@ -1881,6 +2094,8 @@ declare namespace sap {
1881
2094
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1882
2095
  *
1883
2096
  * Default value is `false`.
2097
+ *
2098
+ * @returns Reference to `this` in order to allow method chaining
1884
2099
  */
1885
2100
  setShowIfGrouped(
1886
2101
  /**
@@ -1896,6 +2111,8 @@ declare namespace sap {
1896
2111
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1897
2112
  *
1898
2113
  * Default value is `false`.
2114
+ *
2115
+ * @returns Reference to `this` in order to allow method chaining
1899
2116
  */
1900
2117
  setSummed(
1901
2118
  /**
@@ -1952,6 +2169,8 @@ declare namespace sap {
1952
2169
  * it with the information contained in `oClassInfo`.
1953
2170
  *
1954
2171
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.ColumnMenu.extend}.
2172
+ *
2173
+ * @returns Created class / constructor function
1955
2174
  */
1956
2175
  static extend<T extends Record<string, unknown>>(
1957
2176
  /**
@@ -1970,6 +2189,8 @@ declare namespace sap {
1970
2189
  ): Function;
1971
2190
  /**
1972
2191
  * Returns a metadata object for class sap.ui.table.AnalyticalColumnMenu.
2192
+ *
2193
+ * @returns Metadata object describing this class
1973
2194
  */
1974
2195
  static getMetadata(): sap.ui.core.ElementMetadata;
1975
2196
  }
@@ -2023,6 +2244,8 @@ declare namespace sap {
2023
2244
  * the information contained in `oClassInfo`.
2024
2245
  *
2025
2246
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.table.Table.extend}.
2247
+ *
2248
+ * @returns Created class / constructor function
2026
2249
  */
2027
2250
  static extend<T extends Record<string, unknown>>(
2028
2251
  /**
@@ -2041,6 +2264,8 @@ declare namespace sap {
2041
2264
  ): Function;
2042
2265
  /**
2043
2266
  * Returns a metadata object for class sap.ui.table.AnalyticalTable.
2267
+ *
2268
+ * @returns Metadata object describing this class
2044
2269
  */
2045
2270
  static getMetadata(): sap.ui.core.ElementMetadata;
2046
2271
  /**
@@ -2051,6 +2276,8 @@ declare namespace sap {
2051
2276
  *
2052
2277
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
2053
2278
  * To override the current selection, please use "setSelectionInterval" or for a single entry use "setSelectedIndex".
2279
+ *
2280
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2054
2281
  */
2055
2282
  addSelectionInterval(
2056
2283
  /**
@@ -2064,6 +2291,8 @@ declare namespace sap {
2064
2291
  ): this;
2065
2292
  /**
2066
2293
  * Collapses one or more rows.
2294
+ *
2295
+ * @returns Reference to `this` in order to allow method chaining
2067
2296
  */
2068
2297
  collapse(
2069
2298
  /**
@@ -2073,10 +2302,14 @@ declare namespace sap {
2073
2302
  ): this;
2074
2303
  /**
2075
2304
  * Collapses all nodes (and their child nodes if collapseRecursive is activated).
2305
+ *
2306
+ * @returns Reference to `this` in order to allow method chaining
2076
2307
  */
2077
2308
  collapseAll(): this;
2078
2309
  /**
2079
2310
  * Expands one or more rows.
2311
+ *
2312
+ * @returns Reference to `this` in order to allow method chaining
2080
2313
  */
2081
2314
  expand(
2082
2315
  /**
@@ -2090,6 +2323,8 @@ declare namespace sap {
2090
2323
  * Expands all nodes. The current selection is removed, and the table scrolls back to the top. If this method
2091
2324
  * is called, not all groups might be loaded. If the user then scrolls to the bottom of the table, additional
2092
2325
  * groups are loaded, which increases the scroll range, and the scroll thumb moves up.
2326
+ *
2327
+ * @returns Reference to `this` in order to allow method chaining
2093
2328
  */
2094
2329
  expandAll(): this;
2095
2330
  /**
@@ -2117,6 +2352,8 @@ declare namespace sap {
2117
2352
  *
2118
2353
  *
2119
2354
  * Default value is `"Bundled"`.
2355
+ *
2356
+ * @returns Value of property `autoExpandMode`
2120
2357
  */
2121
2358
  getAutoExpandMode(): string;
2122
2359
  /**
@@ -2143,6 +2380,8 @@ declare namespace sap {
2143
2380
  *
2144
2381
  *
2145
2382
  * Default value is `true`.
2383
+ *
2384
+ * @returns Value of property `collapseRecursive`
2146
2385
  */
2147
2386
  getCollapseRecursive(): boolean;
2148
2387
  /**
@@ -2150,10 +2389,14 @@ declare namespace sap {
2150
2389
  *
2151
2390
  * Functions which is used to sort the column visibility menu entries e.g.: function(ColumnA, ColumnB) {
2152
2391
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
2392
+ *
2393
+ * @returns Value of property `columnVisibilityMenuSorter`
2153
2394
  */
2154
2395
  getColumnVisibilityMenuSorter(): any;
2155
2396
  /**
2156
2397
  * Returns the context of a row by its index.
2398
+ *
2399
+ * @returns The context of a row by its index
2157
2400
  */
2158
2401
  getContextByIndex(
2159
2402
  /**
@@ -2167,6 +2410,8 @@ declare namespace sap {
2167
2410
  * Gets current value of property {@link #getDirty dirty}.
2168
2411
  *
2169
2412
  * If dirty the content of the Table will be overlayed.
2413
+ *
2414
+ * @returns Value of property `dirty`
2170
2415
  */
2171
2416
  getDirty(): boolean;
2172
2417
  /**
@@ -2205,6 +2450,8 @@ declare namespace sap {
2205
2450
  *
2206
2451
  *
2207
2452
  * Default value is `0`.
2453
+ *
2454
+ * @returns Value of property `numberOfExpandedLevels`
2208
2455
  */
2209
2456
  getNumberOfExpandedLevels(): int;
2210
2457
  /**
@@ -2212,6 +2459,8 @@ declare namespace sap {
2212
2459
  *
2213
2460
  * The lead selection index is, among other things, used to determine the start/end of a selection range,
2214
2461
  * when using Shift-Click to select multiple entries at once.
2462
+ *
2463
+ * @returns Current lead selection index.
2215
2464
  */
2216
2465
  getSelectedIndex(): int;
2217
2466
  /**
@@ -2220,6 +2469,8 @@ declare namespace sap {
2220
2469
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
2221
2470
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
2222
2471
  * yet loaded" to the client), will not be returned.
2472
+ *
2473
+ * @returns an array containing all selected indices
2223
2474
  */
2224
2475
  getSelectedIndices(): int[];
2225
2476
  /**
@@ -2247,14 +2498,20 @@ declare namespace sap {
2247
2498
  *
2248
2499
  *
2249
2500
  * Default value is `false`.
2501
+ *
2502
+ * @returns Value of property `sumOnTop`
2250
2503
  */
2251
2504
  getSumOnTop(): boolean;
2252
2505
  /**
2253
2506
  * Returns the total size of the data entries.
2507
+ *
2508
+ * @returns The total size of the data entries
2254
2509
  */
2255
2510
  getTotalSize(): int;
2256
2511
  /**
2257
2512
  * Checks whether the row is expanded or collapsed.
2513
+ *
2514
+ * @returns `true` if the row is expanded, `false` if it is collapsed
2258
2515
  */
2259
2516
  isExpanded(
2260
2517
  /**
@@ -2264,6 +2521,8 @@ declare namespace sap {
2264
2521
  ): boolean;
2265
2522
  /**
2266
2523
  * Checks if the row at the given index is selected.
2524
+ *
2525
+ * @returns true if the index is selected, false otherwise
2267
2526
  */
2268
2527
  isIndexSelected(
2269
2528
  /**
@@ -2276,6 +2535,8 @@ declare namespace sap {
2276
2535
  * with their absolute row index. Please be aware that the absolute row index only applies to the tree which
2277
2536
  * is visualized by the `AnalyticalTable` control. Invisible nodes (collapsed child nodes) will not be taken
2278
2537
  * into account.
2538
+ *
2539
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2279
2540
  */
2280
2541
  removeSelectionInterval(
2281
2542
  /**
@@ -2307,6 +2568,8 @@ declare namespace sap {
2307
2568
  * on the client are selected. In addition all subsequent rows/tree nodes, which will be paged into view
2308
2569
  * are also immediately selected. However, due to obvious performance/network traffic reasons, the SelectAll
2309
2570
  * function will NOT retrieve any data from the backend.
2571
+ *
2572
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2310
2573
  */
2311
2574
  selectAll(): this;
2312
2575
  /**
@@ -2336,6 +2599,8 @@ declare namespace sap {
2336
2599
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2337
2600
  *
2338
2601
  * Default value is `"Bundled"`.
2602
+ *
2603
+ * @returns Reference to `this` in order to allow method chaining
2339
2604
  */
2340
2605
  setAutoExpandMode(
2341
2606
  /**
@@ -2369,6 +2634,8 @@ declare namespace sap {
2369
2634
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2370
2635
  *
2371
2636
  * Default value is `true`.
2637
+ *
2638
+ * @returns Reference to `this` in order to allow method chaining
2372
2639
  */
2373
2640
  setCollapseRecursive(
2374
2641
  /**
@@ -2383,6 +2650,8 @@ declare namespace sap {
2383
2650
  * return 0 = equals, <0 lower, >0 greater }; Other values than functions will be ignored.
2384
2651
  *
2385
2652
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2653
+ *
2654
+ * @returns Reference to `this` in order to allow method chaining
2386
2655
  */
2387
2656
  setColumnVisibilityMenuSorter(
2388
2657
  /**
@@ -2398,6 +2667,8 @@ declare namespace sap {
2398
2667
  * If dirty the content of the Table will be overlayed.
2399
2668
  *
2400
2669
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2670
+ *
2671
+ * @returns Reference to `this` in order to allow method chaining
2401
2672
  */
2402
2673
  setDirty(
2403
2674
  /**
@@ -2409,12 +2680,16 @@ declare namespace sap {
2409
2680
  * @deprecated (since 1.28)
2410
2681
  *
2411
2682
  * The property `enableGrouping` is not supported by the `AnalyticalTable` control.
2683
+ *
2684
+ * @returns Reference to `this` in order to allow method chaining
2412
2685
  */
2413
2686
  setEnableGrouping(bValue: boolean): this;
2414
2687
  /**
2415
2688
  * @deprecated (since 1.28)
2416
2689
  *
2417
2690
  * The `groupBy` association is not supported by the `AnalyticalTable` control.
2691
+ *
2692
+ * @returns Reference to `this` in order to allow method chaining
2418
2693
  */
2419
2694
  setGroupBy(oGroupBy: sap.ui.core.ID | sap.ui.table.Column): this;
2420
2695
  /**
@@ -2443,6 +2718,8 @@ declare namespace sap {
2443
2718
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2444
2719
  *
2445
2720
  * Default value is `0`.
2721
+ *
2722
+ * @returns Reference to `this` in order to allow method chaining
2446
2723
  */
2447
2724
  setNumberOfExpandedLevels(
2448
2725
  /**
@@ -2454,6 +2731,8 @@ declare namespace sap {
2454
2731
  * In an `AnalyticalTable` control you can only select indices, which correspond to the currently visualized
2455
2732
  * tree. Invisible nodes (e.g. collapsed child nodes) cannot be selected via Index, because they do not
2456
2733
  * correspond to an `AnalyticalTable` row.
2734
+ *
2735
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2457
2736
  */
2458
2737
  setSelectedIndex(
2459
2738
  /**
@@ -2466,6 +2745,8 @@ declare namespace sap {
2466
2745
  *
2467
2746
  * **Note:** The previous selection will be lost/overridden. If this is not the required behavior, please
2468
2747
  * use `addSelectionInterval` and `removeSelectionInterval`.
2748
+ *
2749
+ * @returns a reference to the `AnalyticalTable` control, can be used for chaining
2469
2750
  */
2470
2751
  setSelectionInterval(
2471
2752
  /**
@@ -2504,6 +2785,8 @@ declare namespace sap {
2504
2785
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2505
2786
  *
2506
2787
  * Default value is `false`.
2788
+ *
2789
+ * @returns Reference to `this` in order to allow method chaining
2507
2790
  */
2508
2791
  setSumOnTop(
2509
2792
  /**
@@ -2558,6 +2841,8 @@ declare namespace sap {
2558
2841
  * contained in `oClassInfo`.
2559
2842
  *
2560
2843
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Element.extend}.
2844
+ *
2845
+ * @returns Created class / constructor function
2561
2846
  */
2562
2847
  static extend<T extends Record<string, unknown>>(
2563
2848
  /**
@@ -2576,12 +2861,16 @@ declare namespace sap {
2576
2861
  ): Function;
2577
2862
  /**
2578
2863
  * Returns a metadata object for class sap.ui.table.Column.
2864
+ *
2865
+ * @returns Metadata object describing this class
2579
2866
  */
2580
2867
  static getMetadata(): sap.ui.core.ElementMetadata;
2581
2868
  /**
2582
2869
  * @SINCE 1.13.1
2583
2870
  *
2584
2871
  * Adds some multiLabel to the aggregation {@link #getMultiLabels multiLabels}.
2872
+ *
2873
+ * @returns Reference to `this` in order to allow method chaining
2585
2874
  */
2586
2875
  addMultiLabel(
2587
2876
  /**
@@ -2599,6 +2888,8 @@ declare namespace sap {
2599
2888
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
2600
2889
  *
2601
2890
  * Fires before the column menu is opened.
2891
+ *
2892
+ * @returns Reference to `this` in order to allow method chaining
2602
2893
  */
2603
2894
  attachColumnMenuOpen(
2604
2895
  /**
@@ -2625,6 +2916,8 @@ declare namespace sap {
2625
2916
  * otherwise it will be bound to this `sap.ui.table.Column` itself.
2626
2917
  *
2627
2918
  * Fires before the column menu is opened.
2919
+ *
2920
+ * @returns Reference to `this` in order to allow method chaining
2628
2921
  */
2629
2922
  attachColumnMenuOpen(
2630
2923
  /**
@@ -2638,20 +2931,28 @@ declare namespace sap {
2638
2931
  ): this;
2639
2932
  /**
2640
2933
  * Destroys the label in the aggregation {@link #getLabel label}.
2934
+ *
2935
+ * @returns Reference to `this` in order to allow method chaining
2641
2936
  */
2642
2937
  destroyLabel(): this;
2643
2938
  /**
2644
2939
  * Destroys the menu in the aggregation {@link #getMenu menu}.
2940
+ *
2941
+ * @returns Reference to `this` in order to allow method chaining
2645
2942
  */
2646
2943
  destroyMenu(): this;
2647
2944
  /**
2648
2945
  * @SINCE 1.13.1
2649
2946
  *
2650
2947
  * Destroys all the multiLabels in the aggregation {@link #getMultiLabels multiLabels}.
2948
+ *
2949
+ * @returns Reference to `this` in order to allow method chaining
2651
2950
  */
2652
2951
  destroyMultiLabels(): this;
2653
2952
  /**
2654
2953
  * Destroys the template in the aggregation {@link #getTemplate template}.
2954
+ *
2955
+ * @returns Reference to `this` in order to allow method chaining
2655
2956
  */
2656
2957
  destroyTemplate(): this;
2657
2958
  /**
@@ -2661,6 +2962,8 @@ declare namespace sap {
2661
2962
  * `sap.ui.table.Column`.
2662
2963
  *
2663
2964
  * The passed function and listener object must match the ones used for event registration.
2965
+ *
2966
+ * @returns Reference to `this` in order to allow method chaining
2664
2967
  */
2665
2968
  detachColumnMenuOpen(
2666
2969
  /**
@@ -2679,6 +2982,8 @@ declare namespace sap {
2679
2982
  *
2680
2983
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
2681
2984
  * event object. The return value of this method indicates whether the default action should be executed.
2985
+ *
2986
+ * @returns Whether or not to prevent the default action
2682
2987
  */
2683
2988
  fireColumnMenuOpen(
2684
2989
  /**
@@ -2703,6 +3008,8 @@ declare namespace sap {
2703
3008
  * sap.ui.commons.Checkbox, sap.m.CheckBox`
2704
3009
  *
2705
3010
  * Default value is `false`.
3011
+ *
3012
+ * @returns Value of property `autoResizable`
2706
3013
  */
2707
3014
  getAutoResizable(): boolean;
2708
3015
  /**
@@ -2710,6 +3017,8 @@ declare namespace sap {
2710
3017
  *
2711
3018
  * If this property is set, the default filter operator of the column is overridden. By default `Contains`
2712
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`
2713
3022
  */
2714
3023
  getDefaultFilterOperator(): string;
2715
3024
  /**
@@ -2720,12 +3029,16 @@ declare namespace sap {
2720
3029
  * sap.ui.table.Table#filter}.
2721
3030
  *
2722
3031
  * Default value is `false`.
3032
+ *
3033
+ * @returns Value of property `filtered`
2723
3034
  */
2724
3035
  getFiltered(): boolean;
2725
3036
  /**
2726
3037
  * Gets current value of property {@link #getFilterOperator filterOperator}.
2727
3038
  *
2728
3039
  * Filter operator to use when filtering this column.
3040
+ *
3041
+ * @returns Value of property `filterOperator`
2729
3042
  */
2730
3043
  getFilterOperator(): string;
2731
3044
  /**
@@ -2738,6 +3051,8 @@ declare namespace sap {
2738
3051
  *
2739
3052
  * A column menu entry for filtering can only be generated if the `filterProperty` is set. The default menu
2740
3053
  * entry is a text input field.
3054
+ *
3055
+ * @returns Value of property `filterProperty`
2741
3056
  */
2742
3057
  getFilterProperty(): string;
2743
3058
  /**
@@ -2752,6 +3067,8 @@ declare namespace sap {
2752
3067
  * \{\} \}"`. Here the escaping is mandatory to avoid handling by the binding parser. As an alternative,
2753
3068
  * a function can be passed that takes over the conversion. This cannot be done in the XMLView, use {@link
2754
3069
  * #setFilterType} instead.
3070
+ *
3071
+ * @returns Value of property `filterType`
2755
3072
  */
2756
3073
  getFilterType(): any;
2757
3074
  /**
@@ -2773,6 +3090,9 @@ declare namespace sap {
2773
3090
  * some..thing between
2774
3091
  * 50..100 between
2775
3092
  * ```
3093
+ *
3094
+ *
3095
+ * @returns Value of property `filterValue`
2776
3096
  */
2777
3097
  getFilterValue(): string;
2778
3098
  /**
@@ -2787,6 +3107,8 @@ declare namespace sap {
2787
3107
  * of the table.
2788
3108
  *
2789
3109
  * Default value is `true`.
3110
+ *
3111
+ * @returns Value of property `flexible`
2790
3112
  */
2791
3113
  getFlexible(): boolean;
2792
3114
  /**
@@ -2795,6 +3117,8 @@ declare namespace sap {
2795
3117
  * Indicates if the column is grouped.
2796
3118
  *
2797
3119
  * Default value is `false`.
3120
+ *
3121
+ * @returns Value of property `grouped`
2798
3122
  */
2799
3123
  getGrouped(): boolean;
2800
3124
  /**
@@ -2804,6 +3128,8 @@ declare namespace sap {
2804
3128
  * alignment. You have to set the text align directly on the template.
2805
3129
  *
2806
3130
  * Default value is `Begin`.
3131
+ *
3132
+ * @returns Value of property `hAlign`
2807
3133
  */
2808
3134
  getHAlign(): sap.ui.core.HorizontalAlign;
2809
3135
  /**
@@ -2817,6 +3143,8 @@ declare namespace sap {
2817
3143
  * which are part of the header with the greatest span will be set to fixed.
2818
3144
  *
2819
3145
  * Default value is `1`.
3146
+ *
3147
+ * @returns Value of property `headerSpan`
2820
3148
  */
2821
3149
  getHeaderSpan(): any;
2822
3150
  /**
@@ -2848,6 +3176,8 @@ declare namespace sap {
2848
3176
  * is device-dependent, for example on desktop devices the column will not be smaller than 48px.
2849
3177
  *
2850
3178
  * Default value is `0`.
3179
+ *
3180
+ * @returns Value of property `minWidth`
2851
3181
  */
2852
3182
  getMinWidth(): int;
2853
3183
  /**
@@ -2867,6 +3197,8 @@ declare namespace sap {
2867
3197
  * The name of the column which is used for the text representation of this column, for example, in menus.
2868
3198
  * If not set, the text from the multiLabels aggregation or the label aggregation (in that order) is used
2869
3199
  * as a fallback option.
3200
+ *
3201
+ * @returns Value of property `name`
2870
3202
  */
2871
3203
  getName(): string;
2872
3204
  /**
@@ -2876,6 +3208,8 @@ declare namespace sap {
2876
3208
  * (SHIFT + Left/Right Arrow keys)
2877
3209
  *
2878
3210
  * Default value is `true`.
3211
+ *
3212
+ * @returns Value of property `resizable`
2879
3213
  */
2880
3214
  getResizable(): boolean;
2881
3215
  /**
@@ -2886,6 +3220,8 @@ declare namespace sap {
2886
3220
  * Defines if the filter menu entry is displayed
2887
3221
  *
2888
3222
  * Default value is `true`.
3223
+ *
3224
+ * @returns Value of property `showFilterMenuEntry`
2889
3225
  */
2890
3226
  getShowFilterMenuEntry(): boolean;
2891
3227
  /**
@@ -2896,6 +3232,8 @@ declare namespace sap {
2896
3232
  * Defines if the sort menu entries are displayed
2897
3233
  *
2898
3234
  * Default value is `true`.
3235
+ *
3236
+ * @returns Value of property `showSortMenuEntry`
2899
3237
  */
2900
3238
  getShowSortMenuEntry(): boolean;
2901
3239
  /**
@@ -2905,6 +3243,8 @@ declare namespace sap {
2905
3243
  * column header - it does not trigger the sort function. The column can be sorted using {@link sap.ui.table.Table#sort}.
2906
3244
  *
2907
3245
  * Default value is `false`.
3246
+ *
3247
+ * @returns Value of property `sorted`
2908
3248
  */
2909
3249
  getSorted(): boolean;
2910
3250
  /**
@@ -2914,6 +3254,8 @@ declare namespace sap {
2914
3254
  * rendered if the property `sorted` is `true`
2915
3255
  *
2916
3256
  * Default value is `Ascending`.
3257
+ *
3258
+ * @returns Value of property `sortOrder`
2917
3259
  */
2918
3260
  getSortOrder(): sap.ui.table.SortOrder;
2919
3261
  /**
@@ -2925,6 +3267,8 @@ declare namespace sap {
2925
3267
  * displayed in the same column, only one of the two can be defined as `sortProperty`.
2926
3268
  *
2927
3269
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
3270
+ *
3271
+ * @returns Value of property `sortProperty`
2928
3272
  */
2929
3273
  getSortProperty(): string;
2930
3274
  /**
@@ -2943,6 +3287,8 @@ declare namespace sap {
2943
3287
  getTemplate(): sap.ui.core.Control | string;
2944
3288
  /**
2945
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
2946
3292
  */
2947
3293
  getTemplateClone(
2948
3294
  /**
@@ -2956,6 +3302,8 @@ declare namespace sap {
2956
3302
  * Invisible controls are not rendered.
2957
3303
  *
2958
3304
  * Default value is `true`.
3305
+ *
3306
+ * @returns Value of property `visible`
2959
3307
  */
2960
3308
  getVisible(): boolean;
2961
3309
  /**
@@ -2966,6 +3314,8 @@ declare namespace sap {
2966
3314
  * than 48px. This property can be changed by the user or by the application configuration/personalization.
2967
3315
  * If a user adjusts the column width manually, the resulting value is always set in pixels. In addition,
2968
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`
2969
3319
  */
2970
3320
  getWidth(): sap.ui.core.CSSSize;
2971
3321
  /**
@@ -2973,6 +3323,8 @@ declare namespace sap {
2973
3323
  *
2974
3324
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getMultiLabels multiLabels}.
2975
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
2976
3328
  */
2977
3329
  indexOfMultiLabel(
2978
3330
  /**
@@ -2984,6 +3336,8 @@ declare namespace sap {
2984
3336
  * @SINCE 1.13.1
2985
3337
  *
2986
3338
  * Inserts a multiLabel into the aggregation {@link #getMultiLabels multiLabels}.
3339
+ *
3340
+ * @returns Reference to `this` in order to allow method chaining
2987
3341
  */
2988
3342
  insertMultiLabel(
2989
3343
  /**
@@ -3003,12 +3357,16 @@ declare namespace sap {
3003
3357
  * Removes all the controls from the aggregation {@link #getMultiLabels multiLabels}.
3004
3358
  *
3005
3359
  * Additionally, it unregisters them from the hosting UIArea.
3360
+ *
3361
+ * @returns An array of the removed elements (might be empty)
3006
3362
  */
3007
3363
  removeAllMultiLabels(): sap.ui.core.Control[];
3008
3364
  /**
3009
3365
  * @SINCE 1.13.1
3010
3366
  *
3011
3367
  * Removes a multiLabel from the aggregation {@link #getMultiLabels multiLabels}.
3368
+ *
3369
+ * @returns The removed multiLabel or `null`
3012
3370
  */
3013
3371
  removeMultiLabel(
3014
3372
  /**
@@ -3030,6 +3388,8 @@ declare namespace sap {
3030
3388
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3031
3389
  *
3032
3390
  * Default value is `false`.
3391
+ *
3392
+ * @returns Reference to `this` in order to allow method chaining
3033
3393
  */
3034
3394
  setAutoResizable(
3035
3395
  /**
@@ -3044,6 +3404,8 @@ declare namespace sap {
3044
3404
  * is used for string and `EQ` for other types. A valid `sap.ui.model.FilterOperator` needs to be passed.
3045
3405
  *
3046
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
3047
3409
  */
3048
3410
  setDefaultFilterOperator(
3049
3411
  /**
@@ -3061,6 +3423,8 @@ declare namespace sap {
3061
3423
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3062
3424
  *
3063
3425
  * Default value is `false`.
3426
+ *
3427
+ * @returns Reference to `this` in order to allow method chaining
3064
3428
  */
3065
3429
  setFiltered(
3066
3430
  /**
@@ -3074,6 +3438,8 @@ declare namespace sap {
3074
3438
  * Filter operator to use when filtering this column.
3075
3439
  *
3076
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
3077
3443
  */
3078
3444
  setFilterOperator(
3079
3445
  /**
@@ -3093,6 +3459,8 @@ declare namespace sap {
3093
3459
  * entry is a text input field.
3094
3460
  *
3095
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
3096
3464
  */
3097
3465
  setFilterProperty(
3098
3466
  /**
@@ -3104,6 +3472,8 @@ declare namespace sap {
3104
3472
  * The filter type can be the class name of a type, an expression similar to the binding syntax, or a function.
3105
3473
  * A function receives the entered filter value as a parameter and should return the appropriate value for
3106
3474
  * the filter expression.
3475
+ *
3476
+ * @returns Reference to `this` in order to allow method chaining
3107
3477
  */
3108
3478
  setFilterType(
3109
3479
  /**
@@ -3133,6 +3503,8 @@ declare namespace sap {
3133
3503
  *
3134
3504
  *
3135
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
3136
3508
  */
3137
3509
  setFilterValue(
3138
3510
  /**
@@ -3154,6 +3526,8 @@ declare namespace sap {
3154
3526
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3155
3527
  *
3156
3528
  * Default value is `true`.
3529
+ *
3530
+ * @returns Reference to `this` in order to allow method chaining
3157
3531
  */
3158
3532
  setFlexible(
3159
3533
  /**
@@ -3169,6 +3543,8 @@ declare namespace sap {
3169
3543
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3170
3544
  *
3171
3545
  * Default value is `false`.
3546
+ *
3547
+ * @returns Reference to `this` in order to allow method chaining
3172
3548
  */
3173
3549
  setGrouped(
3174
3550
  /**
@@ -3185,6 +3561,8 @@ declare namespace sap {
3185
3561
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3186
3562
  *
3187
3563
  * Default value is `Begin`.
3564
+ *
3565
+ * @returns Reference to `this` in order to allow method chaining
3188
3566
  */
3189
3567
  setHAlign(
3190
3568
  /**
@@ -3205,6 +3583,8 @@ declare namespace sap {
3205
3583
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3206
3584
  *
3207
3585
  * Default value is `1`.
3586
+ *
3587
+ * @returns Reference to `this` in order to allow method chaining
3208
3588
  */
3209
3589
  setHeaderSpan(
3210
3590
  /**
@@ -3214,6 +3594,8 @@ declare namespace sap {
3214
3594
  ): this;
3215
3595
  /**
3216
3596
  * Sets the aggregated {@link #getLabel label}.
3597
+ *
3598
+ * @returns Reference to `this` in order to allow method chaining
3217
3599
  */
3218
3600
  setLabel(
3219
3601
  /**
@@ -3223,6 +3605,8 @@ declare namespace sap {
3223
3605
  ): this;
3224
3606
  /**
3225
3607
  * Sets the aggregated {@link #getMenu menu}.
3608
+ *
3609
+ * @returns Reference to `this` in order to allow method chaining
3226
3610
  */
3227
3611
  setMenu(
3228
3612
  /**
@@ -3243,6 +3627,8 @@ declare namespace sap {
3243
3627
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3244
3628
  *
3245
3629
  * Default value is `0`.
3630
+ *
3631
+ * @returns Reference to `this` in order to allow method chaining
3246
3632
  */
3247
3633
  setMinWidth(
3248
3634
  /**
@@ -3260,6 +3646,8 @@ declare namespace sap {
3260
3646
  * as a fallback option.
3261
3647
  *
3262
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
3263
3651
  */
3264
3652
  setName(
3265
3653
  /**
@@ -3276,6 +3664,8 @@ declare namespace sap {
3276
3664
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3277
3665
  *
3278
3666
  * Default value is `true`.
3667
+ *
3668
+ * @returns Reference to `this` in order to allow method chaining
3279
3669
  */
3280
3670
  setResizable(
3281
3671
  /**
@@ -3293,6 +3683,8 @@ declare namespace sap {
3293
3683
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3294
3684
  *
3295
3685
  * Default value is `true`.
3686
+ *
3687
+ * @returns Reference to `this` in order to allow method chaining
3296
3688
  */
3297
3689
  setShowFilterMenuEntry(
3298
3690
  /**
@@ -3310,6 +3702,8 @@ declare namespace sap {
3310
3702
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3311
3703
  *
3312
3704
  * Default value is `true`.
3705
+ *
3706
+ * @returns Reference to `this` in order to allow method chaining
3313
3707
  */
3314
3708
  setShowSortMenuEntry(
3315
3709
  /**
@@ -3326,6 +3720,8 @@ declare namespace sap {
3326
3720
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3327
3721
  *
3328
3722
  * Default value is `false`.
3723
+ *
3724
+ * @returns Reference to `this` in order to allow method chaining
3329
3725
  */
3330
3726
  setSorted(
3331
3727
  /**
@@ -3342,6 +3738,8 @@ declare namespace sap {
3342
3738
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3343
3739
  *
3344
3740
  * Default value is `Ascending`.
3741
+ *
3742
+ * @returns Reference to `this` in order to allow method chaining
3345
3743
  */
3346
3744
  setSortOrder(
3347
3745
  /**
@@ -3360,6 +3758,8 @@ declare namespace sap {
3360
3758
  * A column menu entry for sorting can only be generated if the `sortProperty` is set.
3361
3759
  *
3362
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
3363
3763
  */
3364
3764
  setSortProperty(
3365
3765
  /**
@@ -3369,6 +3769,8 @@ declare namespace sap {
3369
3769
  ): this;
3370
3770
  /**
3371
3771
  * Sets the aggregated {@link #getTemplate template}.
3772
+ *
3773
+ * @returns Reference to `this` in order to allow method chaining
3372
3774
  */
3373
3775
  setTemplate(
3374
3776
  /**
@@ -3384,6 +3786,8 @@ declare namespace sap {
3384
3786
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3385
3787
  *
3386
3788
  * Default value is `true`.
3789
+ *
3790
+ * @returns Reference to `this` in order to allow method chaining
3387
3791
  */
3388
3792
  setVisible(
3389
3793
  /**
@@ -3401,6 +3805,8 @@ declare namespace sap {
3401
3805
  * other columns with width `auto` get a fixed minimum width and do not shrink after the resizing.
3402
3806
  *
3403
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
3404
3810
  */
3405
3811
  setWidth(
3406
3812
  /**
@@ -3410,12 +3816,16 @@ declare namespace sap {
3410
3816
  ): this;
3411
3817
  /**
3412
3818
  * Returns whether the column should be rendered.
3819
+ *
3820
+ * @returns Returns `true`, if the column should be rendered
3413
3821
  */
3414
3822
  shouldRender(): boolean;
3415
3823
  /**
3416
3824
  * @deprecated (since 1.5.1) - Please use the function "sap.ui.Table.prototype.sort".
3417
3825
  *
3418
3826
  * Sorts the current column ascending or descending.
3827
+ *
3828
+ * @returns Reference to `this` in order to allow method chaining
3419
3829
  */
3420
3830
  sort(
3421
3831
  /**
@@ -3484,6 +3894,8 @@ declare namespace sap {
3484
3894
  * information contained in `oClassInfo`.
3485
3895
  *
3486
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
3487
3899
  */
3488
3900
  static extend<T extends Record<string, unknown>>(
3489
3901
  /**
@@ -3502,6 +3914,8 @@ declare namespace sap {
3502
3914
  ): Function;
3503
3915
  /**
3504
3916
  * Returns a metadata object for class sap.ui.table.ColumnMenu.
3917
+ *
3918
+ * @returns Metadata object describing this class
3505
3919
  */
3506
3920
  static getMetadata(): sap.ui.core.ElementMetadata;
3507
3921
  }
@@ -3545,6 +3959,8 @@ declare namespace sap {
3545
3959
  * contained in `oClassInfo`.
3546
3960
  *
3547
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
3548
3964
  */
3549
3965
  static extend<T extends Record<string, unknown>>(
3550
3966
  /**
@@ -3563,10 +3979,14 @@ declare namespace sap {
3563
3979
  ): Function;
3564
3980
  /**
3565
3981
  * Returns a metadata object for class sap.ui.table.Row.
3982
+ *
3983
+ * @returns Metadata object describing this class
3566
3984
  */
3567
3985
  static getMetadata(): sap.ui.core.ElementMetadata;
3568
3986
  /**
3569
3987
  * Adds some cell to the aggregation {@link #getCells cells}.
3988
+ *
3989
+ * @returns Reference to `this` in order to allow method chaining
3570
3990
  */
3571
3991
  addCell(
3572
3992
  /**
@@ -3576,6 +3996,8 @@ declare namespace sap {
3576
3996
  ): this;
3577
3997
  /**
3578
3998
  * Destroys all the cells in the aggregation {@link #getCells cells}.
3999
+ *
4000
+ * @returns Reference to `this` in order to allow method chaining
3579
4001
  */
3580
4002
  destroyCells(): this;
3581
4003
  /**
@@ -3589,18 +4011,15 @@ declare namespace sap {
3589
4011
  /**
3590
4012
  * Returns the index of the row in the table or -1 if not added to a table. This function considers the
3591
4013
  * scroll position of the table and also takes fixed rows and fixed bottom rows into account.
3592
- */
3593
- getIndex(): int;
3594
- /**
3595
- * Returns the related `RowAction` of the row.
3596
4014
  *
3597
- * This function must only be used for application testing purposes. The `RowAction` is generated based
3598
- * on a template. Manipulations of the object or its items are not supported.
4015
+ * @returns index of the row (considers scroll position and fixed rows)
3599
4016
  */
3600
- getRowAction(): sap.ui.table.RowAction;
4017
+ getIndex(): int;
3601
4018
  /**
3602
4019
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getCells cells}. and returns
3603
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
3604
4023
  */
3605
4024
  indexOfCell(
3606
4025
  /**
@@ -3610,6 +4029,8 @@ declare namespace sap {
3610
4029
  ): int;
3611
4030
  /**
3612
4031
  * Inserts a cell into the aggregation {@link #getCells cells}.
4032
+ *
4033
+ * @returns Reference to `this` in order to allow method chaining
3613
4034
  */
3614
4035
  insertCell(
3615
4036
  /**
@@ -3627,10 +4048,14 @@ declare namespace sap {
3627
4048
  * Removes all the controls from the aggregation {@link #getCells cells}.
3628
4049
  *
3629
4050
  * Additionally, it unregisters them from the hosting UIArea.
4051
+ *
4052
+ * @returns An array of the removed elements (might be empty)
3630
4053
  */
3631
4054
  removeAllCells(): sap.ui.core.Control[];
3632
4055
  /**
3633
4056
  * Removes a cell from the aggregation {@link #getCells cells}.
4057
+ *
4058
+ * @returns The removed cell or `null`
3634
4059
  */
3635
4060
  removeCell(
3636
4061
  /**
@@ -3683,6 +4108,8 @@ declare namespace sap {
3683
4108
  * information contained in `oClassInfo`.
3684
4109
  *
3685
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
3686
4113
  */
3687
4114
  static extend<T extends Record<string, unknown>>(
3688
4115
  /**
@@ -3701,10 +4128,14 @@ declare namespace sap {
3701
4128
  ): Function;
3702
4129
  /**
3703
4130
  * Returns a metadata object for class sap.ui.table.RowAction.
4131
+ *
4132
+ * @returns Metadata object describing this class
3704
4133
  */
3705
4134
  static getMetadata(): sap.ui.core.ElementMetadata;
3706
4135
  /**
3707
4136
  * Adds some item to the aggregation {@link #getItems items}.
4137
+ *
4138
+ * @returns Reference to `this` in order to allow method chaining
3708
4139
  */
3709
4140
  addItem(
3710
4141
  /**
@@ -3714,6 +4145,8 @@ declare namespace sap {
3714
4145
  ): this;
3715
4146
  /**
3716
4147
  * Destroys all the items in the aggregation {@link #getItems items}.
4148
+ *
4149
+ * @returns Reference to `this` in order to allow method chaining
3717
4150
  */
3718
4151
  destroyItems(): this;
3719
4152
  /**
@@ -3728,11 +4161,15 @@ declare namespace sap {
3728
4161
  * Whether the control should be visible on the screen. If set to `false`, the control is hidden.
3729
4162
  *
3730
4163
  * Default value is `true`.
4164
+ *
4165
+ * @returns Value of property `visible`
3731
4166
  */
3732
4167
  getVisible(): boolean;
3733
4168
  /**
3734
4169
  * Checks for the provided `sap.ui.table.RowActionItem` in the aggregation {@link #getItems items}. and
3735
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
3736
4173
  */
3737
4174
  indexOfItem(
3738
4175
  /**
@@ -3742,6 +4179,8 @@ declare namespace sap {
3742
4179
  ): int;
3743
4180
  /**
3744
4181
  * Inserts a item into the aggregation {@link #getItems items}.
4182
+ *
4183
+ * @returns Reference to `this` in order to allow method chaining
3745
4184
  */
3746
4185
  insertItem(
3747
4186
  /**
@@ -3759,10 +4198,14 @@ declare namespace sap {
3759
4198
  * Removes all the controls from the aggregation {@link #getItems items}.
3760
4199
  *
3761
4200
  * Additionally, it unregisters them from the hosting UIArea.
4201
+ *
4202
+ * @returns An array of the removed elements (might be empty)
3762
4203
  */
3763
4204
  removeAllItems(): sap.ui.table.RowActionItem[];
3764
4205
  /**
3765
4206
  * Removes a item from the aggregation {@link #getItems items}.
4207
+ *
4208
+ * @returns The removed item or `null`
3766
4209
  */
3767
4210
  removeItem(
3768
4211
  /**
@@ -3778,6 +4221,8 @@ declare namespace sap {
3778
4221
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3779
4222
  *
3780
4223
  * Default value is `true`.
4224
+ *
4225
+ * @returns Reference to `this` in order to allow method chaining
3781
4226
  */
3782
4227
  setVisible(
3783
4228
  /**
@@ -3829,6 +4274,8 @@ declare namespace sap {
3829
4274
  * the information contained in `oClassInfo`.
3830
4275
  *
3831
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
3832
4279
  */
3833
4280
  static extend<T extends Record<string, unknown>>(
3834
4281
  /**
@@ -3847,6 +4294,8 @@ declare namespace sap {
3847
4294
  ): Function;
3848
4295
  /**
3849
4296
  * Returns a metadata object for class sap.ui.table.RowActionItem.
4297
+ *
4298
+ * @returns Metadata object describing this class
3850
4299
  */
3851
4300
  static getMetadata(): sap.ui.core.ElementMetadata;
3852
4301
  /**
@@ -3856,6 +4305,8 @@ declare namespace sap {
3856
4305
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3857
4306
  *
3858
4307
  * The `press` is fired when the user triggers the corresponding action.
4308
+ *
4309
+ * @returns Reference to `this` in order to allow method chaining
3859
4310
  */
3860
4311
  attachPress(
3861
4312
  /**
@@ -3879,6 +4330,8 @@ declare namespace sap {
3879
4330
  * otherwise it will be bound to this `sap.ui.table.RowActionItem` itself.
3880
4331
  *
3881
4332
  * The `press` is fired when the user triggers the corresponding action.
4333
+ *
4334
+ * @returns Reference to `this` in order to allow method chaining
3882
4335
  */
3883
4336
  attachPress(
3884
4337
  /**
@@ -3894,6 +4347,8 @@ declare namespace sap {
3894
4347
  * Detaches event handler `fnFunction` from the {@link #event:press press} event of this `sap.ui.table.RowActionItem`.
3895
4348
  *
3896
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
3897
4352
  */
3898
4353
  detachPress(
3899
4354
  /**
@@ -3907,6 +4362,8 @@ declare namespace sap {
3907
4362
  ): this;
3908
4363
  /**
3909
4364
  * Fires event {@link #event:press press} to attached listeners.
4365
+ *
4366
+ * @returns Reference to `this` in order to allow method chaining
3910
4367
  */
3911
4368
  firePress(
3912
4369
  /**
@@ -3918,6 +4375,8 @@ declare namespace sap {
3918
4375
  * Gets current value of property {@link #getIcon icon}.
3919
4376
  *
3920
4377
  * The icon of the item.
4378
+ *
4379
+ * @returns Value of property `icon`
3921
4380
  */
3922
4381
  getIcon(): sap.ui.core.URI;
3923
4382
  /**
@@ -3926,6 +4385,8 @@ declare namespace sap {
3926
4385
  * The text of the item. It is used as tooltip and for accessibility purposes.
3927
4386
  *
3928
4387
  * Default value is `empty string`.
4388
+ *
4389
+ * @returns Value of property `text`
3929
4390
  */
3930
4391
  getText(): string;
3931
4392
  /**
@@ -3935,6 +4396,8 @@ declare namespace sap {
3935
4396
  * an icon or text is set explicitly this setting is used.
3936
4397
  *
3937
4398
  * Default value is `Custom`.
4399
+ *
4400
+ * @returns Value of property `type`
3938
4401
  */
3939
4402
  getType(): sap.ui.table.RowActionType;
3940
4403
  /**
@@ -3943,6 +4406,8 @@ declare namespace sap {
3943
4406
  * Whether the item should be visible on the screen.
3944
4407
  *
3945
4408
  * Default value is `true`.
4409
+ *
4410
+ * @returns Value of property `visible`
3946
4411
  */
3947
4412
  getVisible(): boolean;
3948
4413
  /**
@@ -3951,6 +4416,8 @@ declare namespace sap {
3951
4416
  * The icon of the item.
3952
4417
  *
3953
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
3954
4421
  */
3955
4422
  setIcon(
3956
4423
  /**
@@ -3966,6 +4433,8 @@ declare namespace sap {
3966
4433
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3967
4434
  *
3968
4435
  * Default value is `empty string`.
4436
+ *
4437
+ * @returns Reference to `this` in order to allow method chaining
3969
4438
  */
3970
4439
  setText(
3971
4440
  /**
@@ -3982,6 +4451,8 @@ declare namespace sap {
3982
4451
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3983
4452
  *
3984
4453
  * Default value is `Custom`.
4454
+ *
4455
+ * @returns Reference to `this` in order to allow method chaining
3985
4456
  */
3986
4457
  setType(
3987
4458
  /**
@@ -3997,6 +4468,8 @@ declare namespace sap {
3997
4468
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3998
4469
  *
3999
4470
  * Default value is `true`.
4471
+ *
4472
+ * @returns Reference to `this` in order to allow method chaining
4000
4473
  */
4001
4474
  setVisible(
4002
4475
  /**
@@ -4048,6 +4521,8 @@ declare namespace sap {
4048
4521
  * the information contained in `oClassInfo`.
4049
4522
  *
4050
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
4051
4526
  */
4052
4527
  static extend<T extends Record<string, unknown>>(
4053
4528
  /**
@@ -4066,6 +4541,8 @@ declare namespace sap {
4066
4541
  ): Function;
4067
4542
  /**
4068
4543
  * Returns a metadata object for class sap.ui.table.RowSettings.
4544
+ *
4545
+ * @returns Metadata object describing this class
4069
4546
  */
4070
4547
  static getMetadata(): sap.ui.core.ElementMetadata;
4071
4548
  /**
@@ -4086,6 +4563,8 @@ declare namespace sap {
4086
4563
  * property must be set.
4087
4564
  *
4088
4565
  * Default value is `"None"`.
4566
+ *
4567
+ * @returns Value of property `highlight`
4089
4568
  */
4090
4569
  getHighlight(): string;
4091
4570
  /**
@@ -4098,6 +4577,8 @@ declare namespace sap {
4098
4577
  * the highlight.
4099
4578
  *
4100
4579
  * Default value is `empty string`.
4580
+ *
4581
+ * @returns Value of property `highlightText`
4101
4582
  */
4102
4583
  getHighlightText(): string;
4103
4584
  /**
@@ -4111,6 +4592,8 @@ declare namespace sap {
4111
4592
  * must be set for **one** row only.
4112
4593
  *
4113
4594
  * Default value is `false`.
4595
+ *
4596
+ * @returns Value of property `navigated`
4114
4597
  */
4115
4598
  getNavigated(): boolean;
4116
4599
  /**
@@ -4133,6 +4616,8 @@ declare namespace sap {
4133
4616
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4134
4617
  *
4135
4618
  * Default value is `"None"`.
4619
+ *
4620
+ * @returns Reference to `this` in order to allow method chaining
4136
4621
  */
4137
4622
  setHighlight(
4138
4623
  /**
@@ -4152,6 +4637,8 @@ declare namespace sap {
4152
4637
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4153
4638
  *
4154
4639
  * Default value is `empty string`.
4640
+ *
4641
+ * @returns Reference to `this` in order to allow method chaining
4155
4642
  */
4156
4643
  setHighlightText(
4157
4644
  /**
@@ -4172,6 +4659,8 @@ declare namespace sap {
4172
4659
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
4173
4660
  *
4174
4661
  * Default value is `false`.
4662
+ *
4663
+ * @returns Reference to `this` in order to allow method chaining
4175
4664
  */
4176
4665
  setNavigated(
4177
4666
  /**
@@ -4237,6 +4726,8 @@ declare namespace sap {
4237
4726
  * contained in `oClassInfo`.
4238
4727
  *
4239
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
4240
4731
  */
4241
4732
  static extend<T extends Record<string, unknown>>(
4242
4733
  /**
@@ -4255,10 +4746,14 @@ declare namespace sap {
4255
4746
  ): Function;
4256
4747
  /**
4257
4748
  * Returns a metadata object for class sap.ui.table.Table.
4749
+ *
4750
+ * @returns Metadata object describing this class
4258
4751
  */
4259
4752
  static getMetadata(): sap.ui.core.ElementMetadata;
4260
4753
  /**
4261
4754
  * Adds some ariaLabelledBy into the association {@link #getAriaLabelledBy ariaLabelledBy}.
4755
+ *
4756
+ * @returns Reference to `this` in order to allow method chaining
4262
4757
  */
4263
4758
  addAriaLabelledBy(
4264
4759
  /**
@@ -4268,6 +4763,8 @@ declare namespace sap {
4268
4763
  ): this;
4269
4764
  /**
4270
4765
  * Adds some column to the aggregation {@link #getColumns columns}.
4766
+ *
4767
+ * @returns Reference to `this` in order to allow method chaining
4271
4768
  */
4272
4769
  addColumn(
4273
4770
  /**
@@ -4277,6 +4774,8 @@ declare namespace sap {
4277
4774
  ): this;
4278
4775
  /**
4279
4776
  * Adds some extension to the aggregation {@link #getExtension extension}.
4777
+ *
4778
+ * @returns Reference to `this` in order to allow method chaining
4280
4779
  */
4281
4780
  addExtension(
4282
4781
  /**
@@ -4288,6 +4787,8 @@ declare namespace sap {
4288
4787
  * @SINCE 1.64
4289
4788
  *
4290
4789
  * Adds some plugin to the aggregation {@link #getPlugins plugins}.
4790
+ *
4791
+ * @returns Reference to `this` in order to allow method chaining
4291
4792
  */
4292
4793
  addPlugin(
4293
4794
  /**
@@ -4297,6 +4798,8 @@ declare namespace sap {
4297
4798
  ): this;
4298
4799
  /**
4299
4800
  * Adds some row to the aggregation {@link #getRows rows}.
4801
+ *
4802
+ * @returns Reference to `this` in order to allow method chaining
4300
4803
  */
4301
4804
  addRow(
4302
4805
  /**
@@ -4307,6 +4810,8 @@ declare namespace sap {
4307
4810
  /**
4308
4811
  * Adds the given selection interval to the selection. In case of a single selection, only `iIndexTo` is
4309
4812
  * added to the selection.
4813
+ *
4814
+ * @returns Reference to `this` in order to allow method chaining
4310
4815
  */
4311
4816
  addSelectionInterval(
4312
4817
  /**
@@ -4328,6 +4833,8 @@ declare namespace sap {
4328
4833
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4329
4834
  *
4330
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
4331
4838
  */
4332
4839
  attachBeforeOpenContextMenu(
4333
4840
  /**
@@ -4354,6 +4861,8 @@ declare namespace sap {
4354
4861
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4355
4862
  *
4356
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
4357
4866
  */
4358
4867
  attachBeforeOpenContextMenu(
4359
4868
  /**
@@ -4375,6 +4884,8 @@ declare namespace sap {
4375
4884
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4376
4885
  *
4377
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
4378
4889
  */
4379
4890
  attachBusyStateChanged(
4380
4891
  /**
@@ -4401,6 +4912,8 @@ declare namespace sap {
4401
4912
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4402
4913
  *
4403
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
4404
4917
  */
4405
4918
  attachBusyStateChanged(
4406
4919
  /**
@@ -4421,6 +4934,8 @@ declare namespace sap {
4421
4934
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4422
4935
  *
4423
4936
  * fired when the user clicks a cell of the table (experimental!).
4937
+ *
4938
+ * @returns Reference to `this` in order to allow method chaining
4424
4939
  */
4425
4940
  attachCellClick(
4426
4941
  /**
@@ -4446,6 +4961,8 @@ declare namespace sap {
4446
4961
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4447
4962
  *
4448
4963
  * fired when the user clicks a cell of the table (experimental!).
4964
+ *
4965
+ * @returns Reference to `this` in order to allow method chaining
4449
4966
  */
4450
4967
  attachCellClick(
4451
4968
  /**
@@ -4468,6 +4985,8 @@ declare namespace sap {
4468
4985
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4469
4986
  *
4470
4987
  * fired when the user clicks a cell of the table.
4988
+ *
4989
+ * @returns Reference to `this` in order to allow method chaining
4471
4990
  */
4472
4991
  attachCellContextmenu(
4473
4992
  /**
@@ -4495,6 +5014,8 @@ declare namespace sap {
4495
5014
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4496
5015
  *
4497
5016
  * fired when the user clicks a cell of the table.
5017
+ *
5018
+ * @returns Reference to `this` in order to allow method chaining
4498
5019
  */
4499
5020
  attachCellContextmenu(
4500
5021
  /**
@@ -4515,6 +5036,8 @@ declare namespace sap {
4515
5036
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4516
5037
  *
4517
5038
  * fired when a column of the table should be freezed
5039
+ *
5040
+ * @returns Reference to `this` in order to allow method chaining
4518
5041
  */
4519
5042
  attachColumnFreeze(
4520
5043
  /**
@@ -4540,6 +5063,8 @@ declare namespace sap {
4540
5063
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4541
5064
  *
4542
5065
  * fired when a column of the table should be freezed
5066
+ *
5067
+ * @returns Reference to `this` in order to allow method chaining
4543
5068
  */
4544
5069
  attachColumnFreeze(
4545
5070
  /**
@@ -4558,6 +5083,8 @@ declare namespace sap {
4558
5083
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4559
5084
  *
4560
5085
  * fired when a table column is moved.
5086
+ *
5087
+ * @returns Reference to `this` in order to allow method chaining
4561
5088
  */
4562
5089
  attachColumnMove(
4563
5090
  /**
@@ -4581,6 +5108,8 @@ declare namespace sap {
4581
5108
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4582
5109
  *
4583
5110
  * fired when a table column is moved.
5111
+ *
5112
+ * @returns Reference to `this` in order to allow method chaining
4584
5113
  */
4585
5114
  attachColumnMove(
4586
5115
  /**
@@ -4599,6 +5128,8 @@ declare namespace sap {
4599
5128
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4600
5129
  *
4601
5130
  * fired when a table column is resized.
5131
+ *
5132
+ * @returns Reference to `this` in order to allow method chaining
4602
5133
  */
4603
5134
  attachColumnResize(
4604
5135
  /**
@@ -4622,6 +5153,8 @@ declare namespace sap {
4622
5153
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4623
5154
  *
4624
5155
  * fired when a table column is resized.
5156
+ *
5157
+ * @returns Reference to `this` in order to allow method chaining
4625
5158
  */
4626
5159
  attachColumnResize(
4627
5160
  /**
@@ -4640,6 +5173,8 @@ declare namespace sap {
4640
5173
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4641
5174
  *
4642
5175
  * fired when a column of the table has been selected
5176
+ *
5177
+ * @returns Reference to `this` in order to allow method chaining
4643
5178
  */
4644
5179
  attachColumnSelect(
4645
5180
  /**
@@ -4663,6 +5198,8 @@ declare namespace sap {
4663
5198
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4664
5199
  *
4665
5200
  * fired when a column of the table has been selected
5201
+ *
5202
+ * @returns Reference to `this` in order to allow method chaining
4666
5203
  */
4667
5204
  attachColumnSelect(
4668
5205
  /**
@@ -4682,6 +5219,8 @@ declare namespace sap {
4682
5219
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4683
5220
  *
4684
5221
  * fired when the visibility of a table column is changed.
5222
+ *
5223
+ * @returns Reference to `this` in order to allow method chaining
4685
5224
  */
4686
5225
  attachColumnVisibility(
4687
5226
  /**
@@ -4706,6 +5245,8 @@ declare namespace sap {
4706
5245
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4707
5246
  *
4708
5247
  * fired when the visibility of a table column is changed.
5248
+ *
5249
+ * @returns Reference to `this` in order to allow method chaining
4709
5250
  */
4710
5251
  attachColumnVisibility(
4711
5252
  /**
@@ -4727,6 +5268,8 @@ declare namespace sap {
4727
5268
  *
4728
5269
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4729
5270
  * the event was triggered is passed as parameter.
5271
+ *
5272
+ * @returns Reference to `this` in order to allow method chaining
4730
5273
  */
4731
5274
  attachCustomFilter(
4732
5275
  /**
@@ -4753,6 +5296,8 @@ declare namespace sap {
4753
5296
  *
4754
5297
  * This event is triggered when the custom filter item of the column menu is pressed. The column on which
4755
5298
  * the event was triggered is passed as parameter.
5299
+ *
5300
+ * @returns Reference to `this` in order to allow method chaining
4756
5301
  */
4757
5302
  attachCustomFilter(
4758
5303
  /**
@@ -4771,6 +5316,8 @@ declare namespace sap {
4771
5316
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4772
5317
  *
4773
5318
  * fired when the table is filtered.
5319
+ *
5320
+ * @returns Reference to `this` in order to allow method chaining
4774
5321
  */
4775
5322
  attachFilter(
4776
5323
  /**
@@ -4794,6 +5341,8 @@ declare namespace sap {
4794
5341
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4795
5342
  *
4796
5343
  * fired when the table is filtered.
5344
+ *
5345
+ * @returns Reference to `this` in order to allow method chaining
4797
5346
  */
4798
5347
  attachFilter(
4799
5348
  /**
@@ -4816,6 +5365,8 @@ declare namespace sap {
4816
5365
  *
4817
5366
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4818
5367
  * The event even is fired when setFirstVisibleRow is called programmatically.
5368
+ *
5369
+ * @returns Reference to `this` in order to allow method chaining
4819
5370
  */
4820
5371
  attachFirstVisibleRowChanged(
4821
5372
  /**
@@ -4843,6 +5394,8 @@ declare namespace sap {
4843
5394
  *
4844
5395
  * This event gets fired when the first visible row is changed. It should only be used by composite controls.
4845
5396
  * The event even is fired when setFirstVisibleRow is called programmatically.
5397
+ *
5398
+ * @returns Reference to `this` in order to allow method chaining
4846
5399
  */
4847
5400
  attachFirstVisibleRowChanged(
4848
5401
  /**
@@ -4861,6 +5414,8 @@ declare namespace sap {
4861
5414
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4862
5415
  *
4863
5416
  * fired when the table is grouped (experimental!).
5417
+ *
5418
+ * @returns Reference to `this` in order to allow method chaining
4864
5419
  */
4865
5420
  attachGroup(
4866
5421
  /**
@@ -4884,6 +5439,8 @@ declare namespace sap {
4884
5439
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
4885
5440
  *
4886
5441
  * fired when the table is grouped (experimental!).
5442
+ *
5443
+ * @returns Reference to `this` in order to allow method chaining
4887
5444
  */
4888
5445
  attachGroup(
4889
5446
  /**
@@ -4905,6 +5462,8 @@ declare namespace sap {
4905
5462
  *
4906
5463
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4907
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
4908
5467
  */
4909
5468
  attachPaste(
4910
5469
  /**
@@ -4931,6 +5490,8 @@ declare namespace sap {
4931
5490
  *
4932
5491
  * This event gets fired when the user pastes content from the clipboard to the table. Pasting can be done
4933
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
4934
5495
  */
4935
5496
  attachPaste(
4936
5497
  /**
@@ -4953,6 +5514,8 @@ declare namespace sap {
4953
5514
  * selection changes - to find out the selected rows you should better use the table selection API)
4954
5515
  *
4955
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
4956
5519
  */
4957
5520
  attachRowSelectionChange(
4958
5521
  /**
@@ -4980,6 +5543,8 @@ declare namespace sap {
4980
5543
  * selection changes - to find out the selected rows you should better use the table selection API)
4981
5544
  *
4982
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
4983
5548
  */
4984
5549
  attachRowSelectionChange(
4985
5550
  /**
@@ -5003,6 +5568,8 @@ declare namespace sap {
5003
5568
  * interaction, for example.
5004
5569
  *
5005
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
5006
5573
  */
5007
5574
  attachRowsUpdated(
5008
5575
  /**
@@ -5031,6 +5598,8 @@ declare namespace sap {
5031
5598
  * interaction, for example.
5032
5599
  *
5033
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
5034
5603
  */
5035
5604
  attachRowsUpdated(
5036
5605
  /**
@@ -5049,6 +5618,8 @@ declare namespace sap {
5049
5618
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
5050
5619
  *
5051
5620
  * fired when the table is sorted.
5621
+ *
5622
+ * @returns Reference to `this` in order to allow method chaining
5052
5623
  */
5053
5624
  attachSort(
5054
5625
  /**
@@ -5072,6 +5643,8 @@ declare namespace sap {
5072
5643
  * otherwise it will be bound to this `sap.ui.table.Table` itself.
5073
5644
  *
5074
5645
  * fired when the table is sorted.
5646
+ *
5647
+ * @returns Reference to `this` in order to allow method chaining
5075
5648
  */
5076
5649
  attachSort(
5077
5650
  /**
@@ -5099,6 +5672,8 @@ declare namespace sap {
5099
5672
  *
5100
5673
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
5101
5674
  * of the possible properties of `oBindingInfo`.
5675
+ *
5676
+ * @returns Reference to `this` in order to allow method chaining
5102
5677
  */
5103
5678
  bindColumns(
5104
5679
  /**
@@ -5111,6 +5686,8 @@ declare namespace sap {
5111
5686
  *
5112
5687
  * See {@link sap.ui.base.ManagedObject#bindAggregation ManagedObject.bindAggregation} for a detailed description
5113
5688
  * of the possible properties of `oBindingInfo`.
5689
+ *
5690
+ * @returns Reference to `this` in order to allow method chaining
5114
5691
  */
5115
5692
  bindRows(
5116
5693
  /**
@@ -5120,58 +5697,82 @@ declare namespace sap {
5120
5697
  ): this;
5121
5698
  /**
5122
5699
  * Removes complete selection.
5700
+ *
5701
+ * @returns Reference to `this` in order to allow method chaining
5123
5702
  */
5124
5703
  clearSelection(): this;
5125
5704
  /**
5126
5705
  * Destroys all the columns in the aggregation {@link #getColumns columns}.
5706
+ *
5707
+ * @returns Reference to `this` in order to allow method chaining
5127
5708
  */
5128
5709
  destroyColumns(): this;
5129
5710
  /**
5130
5711
  * @SINCE 1.54
5131
5712
  *
5132
5713
  * Destroys the contextMenu in the aggregation {@link #getContextMenu contextMenu}.
5714
+ *
5715
+ * @returns Reference to `this` in order to allow method chaining
5133
5716
  */
5134
5717
  destroyContextMenu(): this;
5135
5718
  /**
5136
5719
  * Destroys all the extension in the aggregation {@link #getExtension extension}.
5720
+ *
5721
+ * @returns Reference to `this` in order to allow method chaining
5137
5722
  */
5138
5723
  destroyExtension(): this;
5139
5724
  /**
5140
5725
  * Destroys the footer in the aggregation {@link #getFooter footer}.
5726
+ *
5727
+ * @returns Reference to `this` in order to allow method chaining
5141
5728
  */
5142
5729
  destroyFooter(): this;
5143
5730
  /**
5144
5731
  * Destroys the noData in the aggregation {@link #getNoData noData}.
5732
+ *
5733
+ * @returns Reference to `this` in order to allow method chaining
5145
5734
  */
5146
5735
  destroyNoData(): this;
5147
5736
  /**
5148
5737
  * @SINCE 1.64
5149
5738
  *
5150
5739
  * Destroys all the plugins in the aggregation {@link #getPlugins plugins}.
5740
+ *
5741
+ * @returns Reference to `this` in order to allow method chaining
5151
5742
  */
5152
5743
  destroyPlugins(): this;
5153
5744
  /**
5154
5745
  * Destroys the rowActionTemplate in the aggregation {@link #getRowActionTemplate rowActionTemplate}.
5746
+ *
5747
+ * @returns Reference to `this` in order to allow method chaining
5155
5748
  */
5156
5749
  destroyRowActionTemplate(): this;
5157
5750
  /**
5158
5751
  * Destroys all the rows in the aggregation {@link #getRows rows}.
5752
+ *
5753
+ * @returns Reference to `this` in order to allow method chaining
5159
5754
  */
5160
5755
  destroyRows(): this;
5161
5756
  /**
5162
5757
  * Destroys the rowSettingsTemplate in the aggregation {@link #getRowSettingsTemplate rowSettingsTemplate}.
5758
+ *
5759
+ * @returns Reference to `this` in order to allow method chaining
5163
5760
  */
5164
5761
  destroyRowSettingsTemplate(): this;
5165
5762
  /**
5166
5763
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
5167
5764
  *
5168
5765
  * Destroys the title in the aggregation {@link #getTitle title}.
5766
+ *
5767
+ * @returns Reference to `this` in order to allow method chaining
5169
5768
  */
5170
5769
  destroyTitle(): this;
5171
5770
  /**
5172
5771
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
5173
5772
  *
5174
5773
  * Destroys the toolbar in the aggregation {@link #getToolbar toolbar}.
5774
+ *
5775
+ * @returns Reference to `this` in order to allow method chaining
5175
5776
  */
5176
5777
  destroyToolbar(): this;
5177
5778
  /**
@@ -5181,6 +5782,8 @@ declare namespace sap {
5181
5782
  * event of this `sap.ui.table.Table`.
5182
5783
  *
5183
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
5184
5787
  */
5185
5788
  detachBeforeOpenContextMenu(
5186
5789
  /**
@@ -5199,6 +5802,8 @@ declare namespace sap {
5199
5802
  * this `sap.ui.table.Table`.
5200
5803
  *
5201
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
5202
5807
  */
5203
5808
  detachBusyStateChanged(
5204
5809
  /**
@@ -5216,6 +5821,8 @@ declare namespace sap {
5216
5821
  * Detaches event handler `fnFunction` from the {@link #event:cellClick cellClick} event of this `sap.ui.table.Table`.
5217
5822
  *
5218
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
5219
5826
  */
5220
5827
  detachCellClick(
5221
5828
  /**
@@ -5235,6 +5842,8 @@ declare namespace sap {
5235
5842
  * this `sap.ui.table.Table`.
5236
5843
  *
5237
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
5238
5847
  */
5239
5848
  detachCellContextmenu(
5240
5849
  /**
@@ -5252,6 +5861,8 @@ declare namespace sap {
5252
5861
  * Detaches event handler `fnFunction` from the {@link #event:columnFreeze columnFreeze} event of this `sap.ui.table.Table`.
5253
5862
  *
5254
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
5255
5866
  */
5256
5867
  detachColumnFreeze(
5257
5868
  /**
@@ -5267,6 +5878,8 @@ declare namespace sap {
5267
5878
  * Detaches event handler `fnFunction` from the {@link #event:columnMove columnMove} event of this `sap.ui.table.Table`.
5268
5879
  *
5269
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
5270
5883
  */
5271
5884
  detachColumnMove(
5272
5885
  /**
@@ -5282,6 +5895,8 @@ declare namespace sap {
5282
5895
  * Detaches event handler `fnFunction` from the {@link #event:columnResize columnResize} event of this `sap.ui.table.Table`.
5283
5896
  *
5284
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
5285
5900
  */
5286
5901
  detachColumnResize(
5287
5902
  /**
@@ -5297,6 +5912,8 @@ declare namespace sap {
5297
5912
  * Detaches event handler `fnFunction` from the {@link #event:columnSelect columnSelect} event of this `sap.ui.table.Table`.
5298
5913
  *
5299
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
5300
5917
  */
5301
5918
  detachColumnSelect(
5302
5919
  /**
@@ -5313,6 +5930,8 @@ declare namespace sap {
5313
5930
  * this `sap.ui.table.Table`.
5314
5931
  *
5315
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
5316
5935
  */
5317
5936
  detachColumnVisibility(
5318
5937
  /**
@@ -5330,6 +5949,8 @@ declare namespace sap {
5330
5949
  * Detaches event handler `fnFunction` from the {@link #event:customFilter customFilter} event of this `sap.ui.table.Table`.
5331
5950
  *
5332
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
5333
5954
  */
5334
5955
  detachCustomFilter(
5335
5956
  /**
@@ -5345,6 +5966,8 @@ declare namespace sap {
5345
5966
  * Detaches event handler `fnFunction` from the {@link #event:filter filter} event of this `sap.ui.table.Table`.
5346
5967
  *
5347
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
5348
5971
  */
5349
5972
  detachFilter(
5350
5973
  /**
@@ -5363,6 +5986,8 @@ declare namespace sap {
5363
5986
  * event of this `sap.ui.table.Table`.
5364
5987
  *
5365
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
5366
5991
  */
5367
5992
  detachFirstVisibleRowChanged(
5368
5993
  /**
@@ -5378,6 +6003,8 @@ declare namespace sap {
5378
6003
  * Detaches event handler `fnFunction` from the {@link #event:group group} event of this `sap.ui.table.Table`.
5379
6004
  *
5380
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
5381
6008
  */
5382
6009
  detachGroup(
5383
6010
  /**
@@ -5395,6 +6022,8 @@ declare namespace sap {
5395
6022
  * Detaches event handler `fnFunction` from the {@link #event:paste paste} event of this `sap.ui.table.Table`.
5396
6023
  *
5397
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
5398
6027
  */
5399
6028
  detachPaste(
5400
6029
  /**
@@ -5411,6 +6040,8 @@ declare namespace sap {
5411
6040
  * of this `sap.ui.table.Table`.
5412
6041
  *
5413
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
5414
6045
  */
5415
6046
  detachRowSelectionChange(
5416
6047
  /**
@@ -5428,6 +6059,8 @@ declare namespace sap {
5428
6059
  * Detaches event handler `fnFunction` from the {@link #event:rowsUpdated rowsUpdated} event of this `sap.ui.table.Table`.
5429
6060
  *
5430
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
5431
6064
  */
5432
6065
  detachRowsUpdated(
5433
6066
  /**
@@ -5443,6 +6076,8 @@ declare namespace sap {
5443
6076
  * Detaches event handler `fnFunction` from the {@link #event:sort sort} event of this `sap.ui.table.Table`.
5444
6077
  *
5445
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
5446
6081
  */
5447
6082
  detachSort(
5448
6083
  /**
@@ -5463,6 +6098,8 @@ declare namespace sap {
5463
6098
  *
5464
6099
  * **Please note: This method uses synchronous requests. Support and functioning ends with the support
5465
6100
  * for synchronous requests in browsers.**
6101
+ *
6102
+ * @returns Export object
5466
6103
  */
5467
6104
  exportData(
5468
6105
  /**
@@ -5491,6 +6128,8 @@ declare namespace sap {
5491
6128
  *
5492
6129
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5493
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
5494
6133
  */
5495
6134
  fireBeforeOpenContextMenu(
5496
6135
  /**
@@ -5515,6 +6154,8 @@ declare namespace sap {
5515
6154
  * @SINCE 1.37.0
5516
6155
  *
5517
6156
  * Fires event {@link #event:busyStateChanged busyStateChanged} to attached listeners.
6157
+ *
6158
+ * @returns Reference to `this` in order to allow method chaining
5518
6159
  */
5519
6160
  fireBusyStateChanged(
5520
6161
  /**
@@ -5529,6 +6170,8 @@ declare namespace sap {
5529
6170
  *
5530
6171
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5531
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
5532
6175
  */
5533
6176
  fireCellClick(
5534
6177
  /**
@@ -5570,6 +6213,8 @@ declare namespace sap {
5570
6213
  *
5571
6214
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5572
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
5573
6218
  */
5574
6219
  fireCellContextmenu(
5575
6220
  /**
@@ -5610,6 +6255,8 @@ declare namespace sap {
5610
6255
  *
5611
6256
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5612
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
5613
6260
  */
5614
6261
  fireColumnFreeze(
5615
6262
  /**
@@ -5627,6 +6274,8 @@ declare namespace sap {
5627
6274
  *
5628
6275
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5629
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
5630
6279
  */
5631
6280
  fireColumnMove(
5632
6281
  /**
@@ -5648,6 +6297,8 @@ declare namespace sap {
5648
6297
  *
5649
6298
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5650
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
5651
6302
  */
5652
6303
  fireColumnResize(
5653
6304
  /**
@@ -5669,6 +6320,8 @@ declare namespace sap {
5669
6320
  *
5670
6321
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5671
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
5672
6325
  */
5673
6326
  fireColumnSelect(
5674
6327
  /**
@@ -5686,6 +6339,8 @@ declare namespace sap {
5686
6339
  *
5687
6340
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5688
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
5689
6344
  */
5690
6345
  fireColumnVisibility(
5691
6346
  /**
@@ -5706,6 +6361,8 @@ declare namespace sap {
5706
6361
  * @SINCE 1.23.0
5707
6362
  *
5708
6363
  * Fires event {@link #event:customFilter customFilter} to attached listeners.
6364
+ *
6365
+ * @returns Reference to `this` in order to allow method chaining
5709
6366
  */
5710
6367
  fireCustomFilter(
5711
6368
  /**
@@ -5718,6 +6375,8 @@ declare namespace sap {
5718
6375
  *
5719
6376
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5720
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
5721
6380
  */
5722
6381
  fireFilter(
5723
6382
  /**
@@ -5738,6 +6397,8 @@ declare namespace sap {
5738
6397
  * @SINCE 1.37.0
5739
6398
  *
5740
6399
  * Fires event {@link #event:firstVisibleRowChanged firstVisibleRowChanged} to attached listeners.
6400
+ *
6401
+ * @returns Reference to `this` in order to allow method chaining
5741
6402
  */
5742
6403
  fireFirstVisibleRowChanged(
5743
6404
  /**
@@ -5750,6 +6411,8 @@ declare namespace sap {
5750
6411
  *
5751
6412
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5752
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
5753
6416
  */
5754
6417
  fireGroup(
5755
6418
  /**
@@ -5769,6 +6432,8 @@ declare namespace sap {
5769
6432
  *
5770
6433
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5771
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
5772
6437
  */
5773
6438
  firePaste(
5774
6439
  /**
@@ -5784,6 +6449,8 @@ declare namespace sap {
5784
6449
  ): boolean;
5785
6450
  /**
5786
6451
  * Fires event {@link #event:rowSelectionChange rowSelectionChange} to attached listeners.
6452
+ *
6453
+ * @returns Reference to `this` in order to allow method chaining
5787
6454
  */
5788
6455
  fireRowSelectionChange(
5789
6456
  /**
@@ -5817,6 +6484,8 @@ declare namespace sap {
5817
6484
  * @SINCE 1.86
5818
6485
  *
5819
6486
  * Fires event {@link #event:rowsUpdated rowsUpdated} to attached listeners.
6487
+ *
6488
+ * @returns Reference to `this` in order to allow method chaining
5820
6489
  */
5821
6490
  fireRowsUpdated(
5822
6491
  /**
@@ -5829,6 +6498,8 @@ declare namespace sap {
5829
6498
  *
5830
6499
  * Listeners may prevent the default action of this event by calling the `preventDefault` method on the
5831
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
5832
6503
  */
5833
6504
  fireSort(
5834
6505
  /**
@@ -5879,6 +6550,8 @@ declare namespace sap {
5879
6550
  * Enables alternating table row colors. Alternate row coloring is not available for the tree mode.
5880
6551
  *
5881
6552
  * Default value is `false`.
6553
+ *
6554
+ * @returns Value of property `alternateRowColors`
5882
6555
  */
5883
6556
  getAlternateRowColors(): boolean;
5884
6557
  /**
@@ -5888,6 +6561,8 @@ declare namespace sap {
5888
6561
  getAriaLabelledBy(): sap.ui.core.ID[];
5889
6562
  /**
5890
6563
  * Get the binding object for a specific aggregation/property.
6564
+ *
6565
+ * @returns The binding for the given name
5891
6566
  */
5892
6567
  getBinding(
5893
6568
  /**
@@ -5905,6 +6580,8 @@ declare namespace sap {
5905
6580
  *
5906
6581
  * **Note**: In a {@link sap.ui.table.Column#getMultiLabels MultiLabel} scenario, the height is applied
5907
6582
  * to each individual row of the table's header.
6583
+ *
6584
+ * @returns Value of property `columnHeaderHeight`
5908
6585
  */
5909
6586
  getColumnHeaderHeight(): int;
5910
6587
  /**
@@ -5916,6 +6593,8 @@ declare namespace sap {
5916
6593
  * table can't be guaranteed any more.
5917
6594
  *
5918
6595
  * Default value is `true`.
6596
+ *
6597
+ * @returns Value of property `columnHeaderVisible`
5919
6598
  */
5920
6599
  getColumnHeaderVisible(): boolean;
5921
6600
  /**
@@ -5924,12 +6603,6 @@ declare namespace sap {
5924
6603
  * Columns of the Table
5925
6604
  */
5926
6605
  getColumns(): sap.ui.table.Column[];
5927
- /**
5928
- * In contrast to the function `getFixedColumnCount` which returns the value of the property `fixedColumnCount`,
5929
- * this function returns the actual fixed column count computed based on the column spans of the header,
5930
- * the width of the table and the width of the columns.
5931
- */
5932
- getComputedFixedColumnCount(): int;
5933
6606
  /**
5934
6607
  * Returns the context of a row by its index. Please note that for server-based models like OData, the supplied
5935
6608
  * index might not have been loaded yet. If the context is not available at the client, the binding will
@@ -5938,6 +6611,8 @@ declare namespace sap {
5938
6611
  *
5939
6612
  * For server-based models you should consider to only make this API call when the index is within the currently
5940
6613
  * visible scroll area.
6614
+ *
6615
+ * @returns The context at this index or null
5941
6616
  */
5942
6617
  getContextByIndex(
5943
6618
  /**
@@ -5986,6 +6661,8 @@ declare namespace sap {
5986
6661
  * color in certain themes!)
5987
6662
  *
5988
6663
  * Default value is `true`.
6664
+ *
6665
+ * @returns Value of property `editable`
5989
6666
  */
5990
6667
  getEditable(): boolean;
5991
6668
  /**
@@ -6000,6 +6677,8 @@ declare namespace sap {
6000
6677
  * {@link sap.ui.core.Control#setBusy}.
6001
6678
  *
6002
6679
  * Default value is `false`.
6680
+ *
6681
+ * @returns Value of property `enableBusyIndicator`
6003
6682
  */
6004
6683
  getEnableBusyIndicator(): boolean;
6005
6684
  /**
@@ -6010,6 +6689,8 @@ declare namespace sap {
6010
6689
  * Flag whether to enable or disable the context menu on cells to trigger a filtering with the cell value.
6011
6690
  *
6012
6691
  * Default value is `false`.
6692
+ *
6693
+ * @returns Value of property `enableCellFilter`
6013
6694
  */
6014
6695
  getEnableCellFilter(): boolean;
6015
6696
  /**
@@ -6020,6 +6701,8 @@ declare namespace sap {
6020
6701
  * Flag whether to show or hide the column menu item to freeze or unfreeze a column.
6021
6702
  *
6022
6703
  * Default value is `false`.
6704
+ *
6705
+ * @returns Value of property `enableColumnFreeze`
6023
6706
  */
6024
6707
  getEnableColumnFreeze(): boolean;
6025
6708
  /**
@@ -6028,6 +6711,8 @@ declare namespace sap {
6028
6711
  * Flag to enable or disable column reordering
6029
6712
  *
6030
6713
  * Default value is `true`.
6714
+ *
6715
+ * @returns Value of property `enableColumnReordering`
6031
6716
  */
6032
6717
  getEnableColumnReordering(): boolean;
6033
6718
  /**
@@ -6039,6 +6724,8 @@ declare namespace sap {
6039
6724
  * button will be rendered for which' press event (customFilter) you can register an event handler.
6040
6725
  *
6041
6726
  * Default value is `false`.
6727
+ *
6728
+ * @returns Value of property `enableCustomFilter`
6042
6729
  */
6043
6730
  getEnableCustomFilter(): boolean;
6044
6731
  /**
@@ -6063,6 +6750,8 @@ declare namespace sap {
6063
6750
  * table is grouped by another column or grouping is disabled.
6064
6751
  *
6065
6752
  * Default value is `false`.
6753
+ *
6754
+ * @returns Value of property `enableGrouping`
6066
6755
  */
6067
6756
  getEnableGrouping(): boolean;
6068
6757
  /**
@@ -6074,6 +6763,8 @@ declare namespace sap {
6074
6763
  * if the row selector is visible and the selection mode is set to any kind of multi selection.
6075
6764
  *
6076
6765
  * Default value is `true`.
6766
+ *
6767
+ * @returns Value of property `enableSelectAll`
6077
6768
  */
6078
6769
  getEnableSelectAll(): boolean;
6079
6770
  /**
@@ -6089,6 +6780,8 @@ declare namespace sap {
6089
6780
  * First visible row.
6090
6781
  *
6091
6782
  * Default value is `0`.
6783
+ *
6784
+ * @returns Value of property `firstVisibleRow`
6092
6785
  */
6093
6786
  getFirstVisibleRow(): int;
6094
6787
  /**
@@ -6103,6 +6796,8 @@ declare namespace sap {
6103
6796
  * client model}.
6104
6797
  *
6105
6798
  * Default value is `0`.
6799
+ *
6800
+ * @returns Value of property `fixedBottomRowCount`
6106
6801
  */
6107
6802
  getFixedBottomRowCount(): int;
6108
6803
  /**
@@ -6117,6 +6812,8 @@ declare namespace sap {
6117
6812
  * able to scroll horizontally.
6118
6813
  *
6119
6814
  * Default value is `0`.
6815
+ *
6816
+ * @returns Value of property `fixedColumnCount`
6120
6817
  */
6121
6818
  getFixedColumnCount(): int;
6122
6819
  /**
@@ -6129,6 +6826,8 @@ declare namespace sap {
6129
6826
  * client model}.
6130
6827
  *
6131
6828
  * Default value is `0`.
6829
+ *
6830
+ * @returns Value of property `fixedRowCount`
6132
6831
  */
6133
6832
  getFixedRowCount(): int;
6134
6833
  /**
@@ -6150,6 +6849,8 @@ declare namespace sap {
6150
6849
  * is set to Auto or Interactive. For any other visibleRowCountMode, it is ignored.
6151
6850
  *
6152
6851
  * Default value is `5`.
6852
+ *
6853
+ * @returns Value of property `minAutoRowCount`
6153
6854
  */
6154
6855
  getMinAutoRowCount(): int;
6155
6856
  /**
@@ -6161,6 +6862,8 @@ declare namespace sap {
6161
6862
  * option.
6162
6863
  *
6163
6864
  * Default value is `Scrollbar`.
6865
+ *
6866
+ * @returns Value of property `navigationMode`
6164
6867
  */
6165
6868
  getNavigationMode(): sap.ui.table.NavigationMode;
6166
6869
  /**
@@ -6193,6 +6896,8 @@ declare namespace sap {
6193
6896
  * `1` and `2` are possible.
6194
6897
  *
6195
6898
  * Default value is `0`.
6899
+ *
6900
+ * @returns Value of property `rowActionCount`
6196
6901
  */
6197
6902
  getRowActionCount(): int;
6198
6903
  /**
@@ -6219,6 +6924,8 @@ declare namespace sap {
6219
6924
  *
6220
6925
  * If no value is set (includes 0), a default height is applied based on the content density configuration.
6221
6926
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
6927
+ *
6928
+ * @returns Value of property `rowHeight`
6222
6929
  */
6223
6930
  getRowHeight(): int;
6224
6931
  /**
@@ -6252,10 +6959,14 @@ declare namespace sap {
6252
6959
  * @deprecated (since 1.69) - replaced by {@link sap.ui.table.Table#getSelectedIndices}
6253
6960
  *
6254
6961
  * Retrieves the lead selection index.
6962
+ *
6963
+ * @returns Currently Selected Index.
6255
6964
  */
6256
6965
  getSelectedIndex(): int;
6257
6966
  /**
6258
6967
  * Zero-based indices of selected items, wrapped in an array. An empty array means "no selection".
6968
+ *
6969
+ * @returns Selected indices
6259
6970
  */
6260
6971
  getSelectedIndices(): int[];
6261
6972
  /**
@@ -6267,6 +6978,8 @@ declare namespace sap {
6267
6978
  * on table type) is enabled, even if `sap.ui.table.SelectionBehavior.RowOnly` is set.
6268
6979
  *
6269
6980
  * Default value is `RowSelector`.
6981
+ *
6982
+ * @returns Value of property `selectionBehavior`
6270
6983
  */
6271
6984
  getSelectionBehavior(): sap.ui.table.SelectionBehavior;
6272
6985
  /**
@@ -6280,6 +6993,8 @@ declare namespace sap {
6280
6993
  * applied to the table, the selection mode is controlled by the plugin.
6281
6994
  *
6282
6995
  * Default value is `MultiToggle`.
6996
+ *
6997
+ * @returns Value of property `selectionMode`
6283
6998
  */
6284
6999
  getSelectionMode(): sap.ui.table.SelectionMode;
6285
7000
  /**
@@ -6289,6 +7004,8 @@ declare namespace sap {
6289
7004
  * header menu. It allows to show or hide columns
6290
7005
  *
6291
7006
  * Default value is `false`.
7007
+ *
7008
+ * @returns Value of property `showColumnVisibilityMenu`
6292
7009
  */
6293
7010
  getShowColumnVisibilityMenu(): boolean;
6294
7011
  /**
@@ -6298,6 +7015,8 @@ declare namespace sap {
6298
7015
  * just show a grid of empty cells
6299
7016
  *
6300
7017
  * Default value is `true`.
7018
+ *
7019
+ * @returns Value of property `showNoData`
6301
7020
  */
6302
7021
  getShowNoData(): boolean;
6303
7022
  /**
@@ -6309,6 +7028,8 @@ declare namespace sap {
6309
7028
  * anymore on the Table content.
6310
7029
  *
6311
7030
  * Default value is `false`.
7031
+ *
7032
+ * @returns Value of property `showOverlay`
6312
7033
  */
6313
7034
  getShowOverlay(): boolean;
6314
7035
  /**
@@ -6317,18 +7038,22 @@ declare namespace sap {
6317
7038
  * {@link sap.ui.table.Column#setSorted} and {@link sap.ui.table.Column#setSortOrder}.
6318
7039
  * See:
6319
7040
  * sap.ui.table.Table#sort
7041
+ *
7042
+ * @returns Array of sorted columns
6320
7043
  */
6321
7044
  getSortedColumns(): sap.ui.table.Column[];
6322
7045
  /**
6323
7046
  * Gets current value of property {@link #getThreshold threshold}.
6324
7047
  *
6325
- * The `threshold` defines how many additional (not yet visible records) shall be pre-fetched to enable
6326
- * smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount` is
6327
- * 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
6328
- * is lower than the `visibleRowCount`, the `visibleRowCount` will be used as the `threshold`. If the value
6329
- * is 0 then the thresholding is disabled.
7048
+ * Defines how many additional (not yet visible) data records from the back-end system are pre-fetched to
7049
+ * enable smooth scrolling. The threshold is always added to the `visibleRowCount`. If the `visibleRowCount`
7050
+ * is 10 and the `threshold` is 100, there will be 110 records fetched with the initial load. If the `threshold`
7051
+ * is lower than the number of rows in the scrollable area (`visibleRowCount` minus number of fixed rows),
7052
+ * this number is used as the `threshold`. If the value is 0, thresholding is disabled.
6330
7053
  *
6331
7054
  * Default value is `100`.
7055
+ *
7056
+ * @returns Value of property `threshold`
6332
7057
  */
6333
7058
  getThreshold(): int;
6334
7059
  /**
@@ -6354,6 +7079,8 @@ declare namespace sap {
6354
7079
  * Number of visible rows of the table.
6355
7080
  *
6356
7081
  * Default value is `10`.
7082
+ *
7083
+ * @returns Value of property `visibleRowCount`
6357
7084
  */
6358
7085
  getVisibleRowCount(): int;
6359
7086
  /**
@@ -6378,6 +7105,8 @@ declare namespace sap {
6378
7105
  * after rendering. The user can change the `visibleRowCount` by dragging a resizer.
6379
7106
  *
6380
7107
  * Default value is `Fixed`.
7108
+ *
7109
+ * @returns Value of property `visibleRowCountMode`
6381
7110
  */
6382
7111
  getVisibleRowCountMode(): sap.ui.table.VisibleRowCountMode;
6383
7112
  /**
@@ -6386,11 +7115,15 @@ declare namespace sap {
6386
7115
  * Width of the Table.
6387
7116
  *
6388
7117
  * Default value is `'auto'`.
7118
+ *
7119
+ * @returns Value of property `width`
6389
7120
  */
6390
7121
  getWidth(): sap.ui.core.CSSSize;
6391
7122
  /**
6392
7123
  * Checks for the provided `sap.ui.table.Column` in the aggregation {@link #getColumns columns}. and returns
6393
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
6394
7127
  */
6395
7128
  indexOfColumn(
6396
7129
  /**
@@ -6401,6 +7134,8 @@ declare namespace sap {
6401
7134
  /**
6402
7135
  * Checks for the provided `sap.ui.core.Control` in the aggregation {@link #getExtension extension}. and
6403
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
6404
7139
  */
6405
7140
  indexOfExtension(
6406
7141
  /**
@@ -6413,6 +7148,8 @@ declare namespace sap {
6413
7148
  *
6414
7149
  * Checks for the provided `sap.ui.table.plugins.SelectionPlugin` in the aggregation {@link #getPlugins
6415
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
6416
7153
  */
6417
7154
  indexOfPlugin(
6418
7155
  /**
@@ -6423,6 +7160,8 @@ declare namespace sap {
6423
7160
  /**
6424
7161
  * Checks for the provided `sap.ui.table.Row` in the aggregation {@link #getRows rows}. and returns its
6425
7162
  * index if found or -1 otherwise.
7163
+ *
7164
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
6426
7165
  */
6427
7166
  indexOfRow(
6428
7167
  /**
@@ -6432,6 +7171,8 @@ declare namespace sap {
6432
7171
  ): int;
6433
7172
  /**
6434
7173
  * Inserts a column into the aggregation {@link #getColumns columns}.
7174
+ *
7175
+ * @returns Reference to `this` in order to allow method chaining
6435
7176
  */
6436
7177
  insertColumn(
6437
7178
  /**
@@ -6447,6 +7188,8 @@ declare namespace sap {
6447
7188
  ): this;
6448
7189
  /**
6449
7190
  * Inserts a extension into the aggregation {@link #getExtension extension}.
7191
+ *
7192
+ * @returns Reference to `this` in order to allow method chaining
6450
7193
  */
6451
7194
  insertExtension(
6452
7195
  /**
@@ -6464,6 +7207,8 @@ declare namespace sap {
6464
7207
  * @SINCE 1.64
6465
7208
  *
6466
7209
  * Inserts a plugin into the aggregation {@link #getPlugins plugins}.
7210
+ *
7211
+ * @returns Reference to `this` in order to allow method chaining
6467
7212
  */
6468
7213
  insertPlugin(
6469
7214
  /**
@@ -6479,6 +7224,8 @@ declare namespace sap {
6479
7224
  ): this;
6480
7225
  /**
6481
7226
  * Inserts a row into the aggregation {@link #getRows rows}.
7227
+ *
7228
+ * @returns Reference to `this` in order to allow method chaining
6482
7229
  */
6483
7230
  insertRow(
6484
7231
  /**
@@ -6494,6 +7241,8 @@ declare namespace sap {
6494
7241
  ): this;
6495
7242
  /**
6496
7243
  * Checks whether an index is selected.
7244
+ *
7245
+ * @returns Whether the index is selected
6497
7246
  */
6498
7247
  isIndexSelected(
6499
7248
  /**
@@ -6503,18 +7252,24 @@ declare namespace sap {
6503
7252
  ): boolean;
6504
7253
  /**
6505
7254
  * Removes all the controls in the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7255
+ *
7256
+ * @returns An array of the removed elements (might be empty)
6506
7257
  */
6507
7258
  removeAllAriaLabelledBy(): sap.ui.core.ID[];
6508
7259
  /**
6509
7260
  * Removes all the controls from the aggregation {@link #getColumns columns}.
6510
7261
  *
6511
7262
  * Additionally, it unregisters them from the hosting UIArea.
7263
+ *
7264
+ * @returns An array of the removed elements (might be empty)
6512
7265
  */
6513
7266
  removeAllColumns(): sap.ui.table.Column[];
6514
7267
  /**
6515
7268
  * Removes all the controls from the aggregation {@link #getExtension extension}.
6516
7269
  *
6517
7270
  * Additionally, it unregisters them from the hosting UIArea.
7271
+ *
7272
+ * @returns An array of the removed elements (might be empty)
6518
7273
  */
6519
7274
  removeAllExtension(): sap.ui.core.Control[];
6520
7275
  /**
@@ -6523,16 +7278,22 @@ declare namespace sap {
6523
7278
  * Removes all the controls from the aggregation {@link #getPlugins plugins}.
6524
7279
  *
6525
7280
  * Additionally, it unregisters them from the hosting UIArea.
7281
+ *
7282
+ * @returns An array of the removed elements (might be empty)
6526
7283
  */
6527
7284
  removeAllPlugins(): sap.ui.table.plugins.SelectionPlugin[];
6528
7285
  /**
6529
7286
  * Removes all the controls from the aggregation {@link #getRows rows}.
6530
7287
  *
6531
7288
  * Additionally, it unregisters them from the hosting UIArea.
7289
+ *
7290
+ * @returns An array of the removed elements (might be empty)
6532
7291
  */
6533
7292
  removeAllRows(): sap.ui.table.Row[];
6534
7293
  /**
6535
7294
  * Removes an ariaLabelledBy from the association named {@link #getAriaLabelledBy ariaLabelledBy}.
7295
+ *
7296
+ * @returns The removed ariaLabelledBy or `null`
6536
7297
  */
6537
7298
  removeAriaLabelledBy(
6538
7299
  /**
@@ -6542,6 +7303,8 @@ declare namespace sap {
6542
7303
  ): sap.ui.core.ID;
6543
7304
  /**
6544
7305
  * Removes a column from the aggregation {@link #getColumns columns}.
7306
+ *
7307
+ * @returns The removed column or `null`
6545
7308
  */
6546
7309
  removeColumn(
6547
7310
  /**
@@ -6551,6 +7314,8 @@ declare namespace sap {
6551
7314
  ): sap.ui.table.Column;
6552
7315
  /**
6553
7316
  * Removes a extension from the aggregation {@link #getExtension extension}.
7317
+ *
7318
+ * @returns The removed extension or `null`
6554
7319
  */
6555
7320
  removeExtension(
6556
7321
  /**
@@ -6562,6 +7327,8 @@ declare namespace sap {
6562
7327
  * @SINCE 1.64
6563
7328
  *
6564
7329
  * Removes a plugin from the aggregation {@link #getPlugins plugins}.
7330
+ *
7331
+ * @returns The removed plugin or `null`
6565
7332
  */
6566
7333
  removePlugin(
6567
7334
  /**
@@ -6571,6 +7338,8 @@ declare namespace sap {
6571
7338
  ): sap.ui.table.plugins.SelectionPlugin;
6572
7339
  /**
6573
7340
  * Removes a row from the aggregation {@link #getRows rows}.
7341
+ *
7342
+ * @returns The removed row or `null`
6574
7343
  */
6575
7344
  removeRow(
6576
7345
  /**
@@ -6581,6 +7350,8 @@ declare namespace sap {
6581
7350
  /**
6582
7351
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
6583
7352
  * is removed from the selection.
7353
+ *
7354
+ * @returns Reference to `this` in order to allow method chaining
6584
7355
  */
6585
7356
  removeSelectionInterval(
6586
7357
  /**
@@ -6596,6 +7367,8 @@ declare namespace sap {
6596
7367
  * Adds all rows to the selection. Please note that for server based models like OData the indices which
6597
7368
  * are considered to be selected might not be available at the client yet. Calling getContextByIndex might
6598
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
6599
7372
  */
6600
7373
  selectAll(): this;
6601
7374
  /**
@@ -6608,6 +7381,8 @@ declare namespace sap {
6608
7381
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6609
7382
  *
6610
7383
  * Default value is `false`.
7384
+ *
7385
+ * @returns Reference to `this` in order to allow method chaining
6611
7386
  */
6612
7387
  setAlternateRowColors(
6613
7388
  /**
@@ -6627,6 +7402,8 @@ declare namespace sap {
6627
7402
  * to each individual row of the table's header.
6628
7403
  *
6629
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
6630
7407
  */
6631
7408
  setColumnHeaderHeight(
6632
7409
  /**
@@ -6645,6 +7422,8 @@ declare namespace sap {
6645
7422
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6646
7423
  *
6647
7424
  * Default value is `true`.
7425
+ *
7426
+ * @returns Reference to `this` in order to allow method chaining
6648
7427
  */
6649
7428
  setColumnHeaderVisible(
6650
7429
  /**
@@ -6656,6 +7435,8 @@ declare namespace sap {
6656
7435
  * @SINCE 1.54
6657
7436
  *
6658
7437
  * Sets the aggregated {@link #getContextMenu contextMenu}.
7438
+ *
7439
+ * @returns Reference to `this` in order to allow method chaining
6659
7440
  */
6660
7441
  setContextMenu(
6661
7442
  /**
@@ -6672,6 +7453,8 @@ declare namespace sap {
6672
7453
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6673
7454
  *
6674
7455
  * Default value is `true`.
7456
+ *
7457
+ * @returns Reference to `this` in order to allow method chaining
6675
7458
  */
6676
7459
  setEditable(
6677
7460
  /**
@@ -6693,6 +7476,8 @@ declare namespace sap {
6693
7476
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6694
7477
  *
6695
7478
  * Default value is `false`.
7479
+ *
7480
+ * @returns Reference to `this` in order to allow method chaining
6696
7481
  */
6697
7482
  setEnableBusyIndicator(
6698
7483
  /**
@@ -6710,6 +7495,8 @@ declare namespace sap {
6710
7495
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6711
7496
  *
6712
7497
  * Default value is `false`.
7498
+ *
7499
+ * @returns Reference to `this` in order to allow method chaining
6713
7500
  */
6714
7501
  setEnableCellFilter(
6715
7502
  /**
@@ -6727,6 +7514,8 @@ declare namespace sap {
6727
7514
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6728
7515
  *
6729
7516
  * Default value is `false`.
7517
+ *
7518
+ * @returns Reference to `this` in order to allow method chaining
6730
7519
  */
6731
7520
  setEnableColumnFreeze(
6732
7521
  /**
@@ -6742,6 +7531,8 @@ declare namespace sap {
6742
7531
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6743
7532
  *
6744
7533
  * Default value is `true`.
7534
+ *
7535
+ * @returns Reference to `this` in order to allow method chaining
6745
7536
  */
6746
7537
  setEnableColumnReordering(
6747
7538
  /**
@@ -6760,6 +7551,8 @@ declare namespace sap {
6760
7551
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6761
7552
  *
6762
7553
  * Default value is `false`.
7554
+ *
7555
+ * @returns Reference to `this` in order to allow method chaining
6763
7556
  */
6764
7557
  setEnableCustomFilter(
6765
7558
  /**
@@ -6791,6 +7584,8 @@ declare namespace sap {
6791
7584
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6792
7585
  *
6793
7586
  * Default value is `false`.
7587
+ *
7588
+ * @returns Reference to `this` in order to allow method chaining
6794
7589
  */
6795
7590
  setEnableGrouping(
6796
7591
  /**
@@ -6809,6 +7604,8 @@ declare namespace sap {
6809
7604
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6810
7605
  *
6811
7606
  * Default value is `true`.
7607
+ *
7608
+ * @returns Reference to `this` in order to allow method chaining
6812
7609
  */
6813
7610
  setEnableSelectAll(
6814
7611
  /**
@@ -6824,6 +7621,8 @@ declare namespace sap {
6824
7621
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6825
7622
  *
6826
7623
  * Default value is `0`.
7624
+ *
7625
+ * @returns Reference to `this` in order to allow method chaining
6827
7626
  */
6828
7627
  setFirstVisibleRow(
6829
7628
  /**
@@ -6845,6 +7644,8 @@ declare namespace sap {
6845
7644
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6846
7645
  *
6847
7646
  * Default value is `0`.
7647
+ *
7648
+ * @returns Reference to `this` in order to allow method chaining
6848
7649
  */
6849
7650
  setFixedBottomRowCount(
6850
7651
  /**
@@ -6866,6 +7667,8 @@ declare namespace sap {
6866
7667
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6867
7668
  *
6868
7669
  * Default value is `0`.
7670
+ *
7671
+ * @returns Reference to `this` in order to allow method chaining
6869
7672
  */
6870
7673
  setFixedColumnCount(
6871
7674
  /**
@@ -6885,6 +7688,8 @@ declare namespace sap {
6885
7688
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6886
7689
  *
6887
7690
  * Default value is `0`.
7691
+ *
7692
+ * @returns Reference to `this` in order to allow method chaining
6888
7693
  */
6889
7694
  setFixedRowCount(
6890
7695
  /**
@@ -6894,6 +7699,8 @@ declare namespace sap {
6894
7699
  ): this;
6895
7700
  /**
6896
7701
  * Sets the aggregated {@link #getFooter footer}.
7702
+ *
7703
+ * @returns Reference to `this` in order to allow method chaining
6897
7704
  */
6898
7705
  setFooter(
6899
7706
  /**
@@ -6905,6 +7712,8 @@ declare namespace sap {
6905
7712
  * @EXPERIMENTAL (since 1.28)
6906
7713
  *
6907
7714
  * Sets the associated {@link #getGroupBy groupBy}.
7715
+ *
7716
+ * @returns Reference to `this` in order to allow method chaining
6908
7717
  */
6909
7718
  setGroupBy(
6910
7719
  /**
@@ -6922,6 +7731,8 @@ declare namespace sap {
6922
7731
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6923
7732
  *
6924
7733
  * Default value is `5`.
7734
+ *
7735
+ * @returns Reference to `this` in order to allow method chaining
6925
7736
  */
6926
7737
  setMinAutoRowCount(
6927
7738
  /**
@@ -6940,6 +7751,8 @@ declare namespace sap {
6940
7751
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6941
7752
  *
6942
7753
  * Default value is `Scrollbar`.
7754
+ *
7755
+ * @returns Reference to `this` in order to allow method chaining
6943
7756
  */
6944
7757
  setNavigationMode(
6945
7758
  /**
@@ -6949,6 +7762,8 @@ declare namespace sap {
6949
7762
  ): this;
6950
7763
  /**
6951
7764
  * Sets the aggregated {@link #getNoData noData}.
7765
+ *
7766
+ * @returns Reference to `this` in order to allow method chaining
6952
7767
  */
6953
7768
  setNoData(
6954
7769
  /**
@@ -6967,6 +7782,8 @@ declare namespace sap {
6967
7782
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
6968
7783
  *
6969
7784
  * Default value is `0`.
7785
+ *
7786
+ * @returns Reference to `this` in order to allow method chaining
6970
7787
  */
6971
7788
  setRowActionCount(
6972
7789
  /**
@@ -6976,6 +7793,8 @@ declare namespace sap {
6976
7793
  ): this;
6977
7794
  /**
6978
7795
  * Sets the aggregated {@link #getRowActionTemplate rowActionTemplate}.
7796
+ *
7797
+ * @returns Reference to `this` in order to allow method chaining
6979
7798
  */
6980
7799
  setRowActionTemplate(
6981
7800
  /**
@@ -7001,6 +7820,8 @@ declare namespace sap {
7001
7820
  * In any `visibleRowCountMode`, the actual height can increase based on the content.
7002
7821
  *
7003
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
7004
7825
  */
7005
7826
  setRowHeight(
7006
7827
  /**
@@ -7010,6 +7831,8 @@ declare namespace sap {
7010
7831
  ): this;
7011
7832
  /**
7012
7833
  * Sets the aggregated {@link #getRowSettingsTemplate rowSettingsTemplate}.
7834
+ *
7835
+ * @returns Reference to `this` in order to allow method chaining
7013
7836
  */
7014
7837
  setRowSettingsTemplate(
7015
7838
  /**
@@ -7019,6 +7842,8 @@ declare namespace sap {
7019
7842
  ): this;
7020
7843
  /**
7021
7844
  * Sets the selected index. The previous selection is removed.
7845
+ *
7846
+ * @returns Reference to `this` in order to allow method chaining
7022
7847
  */
7023
7848
  setSelectedIndex(
7024
7849
  /**
@@ -7037,6 +7862,8 @@ declare namespace sap {
7037
7862
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7038
7863
  *
7039
7864
  * Default value is `RowSelector`.
7865
+ *
7866
+ * @returns Reference to `this` in order to allow method chaining
7040
7867
  */
7041
7868
  setSelectionBehavior(
7042
7869
  /**
@@ -7046,6 +7873,8 @@ declare namespace sap {
7046
7873
  ): this;
7047
7874
  /**
7048
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
7049
7878
  */
7050
7879
  setSelectionInterval(
7051
7880
  /**
@@ -7059,6 +7888,8 @@ declare namespace sap {
7059
7888
  ): this;
7060
7889
  /**
7061
7890
  * Sets the selection mode. The current selection is lost.
7891
+ *
7892
+ * @returns Reference to `this` in order to allow method chaining
7062
7893
  */
7063
7894
  setSelectionMode(
7064
7895
  /**
@@ -7075,6 +7906,8 @@ declare namespace sap {
7075
7906
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7076
7907
  *
7077
7908
  * Default value is `false`.
7909
+ *
7910
+ * @returns Reference to `this` in order to allow method chaining
7078
7911
  */
7079
7912
  setShowColumnVisibilityMenu(
7080
7913
  /**
@@ -7091,6 +7924,8 @@ declare namespace sap {
7091
7924
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7092
7925
  *
7093
7926
  * Default value is `true`.
7927
+ *
7928
+ * @returns Reference to `this` in order to allow method chaining
7094
7929
  */
7095
7930
  setShowNoData(
7096
7931
  /**
@@ -7109,6 +7944,8 @@ declare namespace sap {
7109
7944
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7110
7945
  *
7111
7946
  * Default value is `false`.
7947
+ *
7948
+ * @returns Reference to `this` in order to allow method chaining
7112
7949
  */
7113
7950
  setShowOverlay(
7114
7951
  /**
@@ -7119,6 +7956,8 @@ declare namespace sap {
7119
7956
  /**
7120
7957
  * Sets the threshold value, which will be added to all data requests in case the Table is bound against
7121
7958
  * an OData service.
7959
+ *
7960
+ * @returns Reference to `this` in order to allow method chaining
7122
7961
  */
7123
7962
  setThreshold(
7124
7963
  /**
@@ -7130,6 +7969,8 @@ declare namespace sap {
7130
7969
  * @deprecated (since 1.72) - Use the `extension` aggregation instead.
7131
7970
  *
7132
7971
  * Sets the aggregated {@link #getTitle title}.
7972
+ *
7973
+ * @returns Reference to `this` in order to allow method chaining
7133
7974
  */
7134
7975
  setTitle(
7135
7976
  /**
@@ -7141,6 +7982,8 @@ declare namespace sap {
7141
7982
  * @deprecated (since 1.38) - This aggregation is deprecated, use the `extension` aggregation instead.
7142
7983
  *
7143
7984
  * Sets the aggregated {@link #getToolbar toolbar}.
7985
+ *
7986
+ * @returns Reference to `this` in order to allow method chaining
7144
7987
  */
7145
7988
  setToolbar(
7146
7989
  /**
@@ -7156,6 +7999,8 @@ declare namespace sap {
7156
7999
  *
7157
8000
  * Please note that tooltips are not rendered for the table. The tooltip property will be set but it won't
7158
8001
  * effect the DOM.
8002
+ *
8003
+ * @returns Reference to `this` in order to allow method chaining
7159
8004
  */
7160
8005
  setTooltip(
7161
8006
  /**
@@ -7171,6 +8016,8 @@ declare namespace sap {
7171
8016
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7172
8017
  *
7173
8018
  * Default value is `10`.
8019
+ *
8020
+ * @returns Reference to `this` in order to allow method chaining
7174
8021
  */
7175
8022
  setVisibleRowCount(
7176
8023
  /**
@@ -7202,6 +8049,8 @@ declare namespace sap {
7202
8049
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7203
8050
  *
7204
8051
  * Default value is `Fixed`.
8052
+ *
8053
+ * @returns Reference to `this` in order to allow method chaining
7205
8054
  */
7206
8055
  setVisibleRowCountMode(
7207
8056
  /**
@@ -7217,6 +8066,8 @@ declare namespace sap {
7217
8066
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7218
8067
  *
7219
8068
  * Default value is `'auto'`.
8069
+ *
8070
+ * @returns Reference to `this` in order to allow method chaining
7220
8071
  */
7221
8072
  setWidth(
7222
8073
  /**
@@ -7243,10 +8094,14 @@ declare namespace sap {
7243
8094
  ): void;
7244
8095
  /**
7245
8096
  * Unbinds aggregation {@link #getColumns columns} from model data.
8097
+ *
8098
+ * @returns Reference to `this` in order to allow method chaining
7246
8099
  */
7247
8100
  unbindColumns(): this;
7248
8101
  /**
7249
8102
  * Unbinds aggregation {@link #getRows rows} from model data.
8103
+ *
8104
+ * @returns Reference to `this` in order to allow method chaining
7250
8105
  */
7251
8106
  unbindRows(): this;
7252
8107
  }
@@ -7292,6 +8147,8 @@ declare namespace sap {
7292
8147
  * it with the information contained in `oClassInfo`.
7293
8148
  *
7294
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
7295
8152
  */
7296
8153
  static extend<T extends Record<string, unknown>>(
7297
8154
  /**
@@ -7310,6 +8167,8 @@ declare namespace sap {
7310
8167
  ): Function;
7311
8168
  /**
7312
8169
  * Returns a metadata object for class sap.ui.table.TablePersoController.
8170
+ *
8171
+ * @returns Metadata object describing this class
7313
8172
  */
7314
8173
  static getMetadata(): sap.ui.base.ManagedObjectMetadata;
7315
8174
  /**
@@ -7318,6 +8177,8 @@ declare namespace sap {
7318
8177
  * Auto save state
7319
8178
  *
7320
8179
  * Default value is `true`.
8180
+ *
8181
+ * @returns Value of property `autoSave`
7321
8182
  */
7322
8183
  getAutoSave(): boolean;
7323
8184
  /**
@@ -7328,6 +8189,8 @@ declare namespace sap {
7328
8189
  * Table and the Column. Basically this will be more stable than using the auto IDs.
7329
8190
  *
7330
8191
  * Default value is `"persoKey"`.
8192
+ *
8193
+ * @returns Value of property `customDataKey`
7331
8194
  */
7332
8195
  getCustomDataKey(): string;
7333
8196
  /**
@@ -7337,6 +8200,8 @@ declare namespace sap {
7337
8200
  * - getPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7338
8201
  * - setPersData(oBundle) : `jQuery Promise` (http://api.jquery.com/promise/)
7339
8202
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
8203
+ *
8204
+ * @returns Value of property `persoService`
7340
8205
  */
7341
8206
  getPersoService(): any;
7342
8207
  /**
@@ -7352,6 +8217,8 @@ declare namespace sap {
7352
8217
  *
7353
8218
  *
7354
8219
  * Default value is `Default`.
8220
+ *
8221
+ * @returns Value of property `resetAllMode`
7355
8222
  */
7356
8223
  getResetAllMode(): sap.ui.table.ResetAllMode;
7357
8224
  /**
@@ -7361,6 +8228,8 @@ declare namespace sap {
7361
8228
  *
7362
8229
  *
7363
8230
  * Default value is `true`.
8231
+ *
8232
+ * @returns Value of property `showResetAll`
7364
8233
  */
7365
8234
  getShowResetAll(): boolean;
7366
8235
  /**
@@ -7378,10 +8247,14 @@ declare namespace sap {
7378
8247
  openDialog(mSettings: object): void;
7379
8248
  /**
7380
8249
  * Refresh the personalizations (reloads data from service).
8250
+ *
8251
+ * @returns `jQuery Promise` which is resolved once the refresh is finished
7381
8252
  */
7382
8253
  refresh(): jQuery.Promise;
7383
8254
  /**
7384
8255
  * Saves the current personalization state.
8256
+ *
8257
+ * @returns `jQuery Promise` which is resolved once the save is finished
7385
8258
  */
7386
8259
  savePersonalizations(): jQuery.Promise;
7387
8260
  /**
@@ -7392,6 +8265,8 @@ declare namespace sap {
7392
8265
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7393
8266
  *
7394
8267
  * Default value is `true`.
8268
+ *
8269
+ * @returns Reference to `this` in order to allow method chaining
7395
8270
  */
7396
8271
  setAutoSave(
7397
8272
  /**
@@ -7409,6 +8284,8 @@ declare namespace sap {
7409
8284
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7410
8285
  *
7411
8286
  * Default value is `"persoKey"`.
8287
+ *
8288
+ * @returns Reference to `this` in order to allow method chaining
7412
8289
  */
7413
8290
  setCustomDataKey(
7414
8291
  /**
@@ -7425,6 +8302,8 @@ declare namespace sap {
7425
8302
  * - delPersData() : `jQuery Promise` (http://api.jquery.com/promise/)
7426
8303
  *
7427
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
7428
8307
  */
7429
8308
  setPersoService(
7430
8309
  /**
@@ -7447,6 +8326,8 @@ declare namespace sap {
7447
8326
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7448
8327
  *
7449
8328
  * Default value is `Default`.
8329
+ *
8330
+ * @returns Reference to `this` in order to allow method chaining
7450
8331
  */
7451
8332
  setResetAllMode(
7452
8333
  /**
@@ -7463,6 +8344,8 @@ declare namespace sap {
7463
8344
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7464
8345
  *
7465
8346
  * Default value is `true`.
8347
+ *
8348
+ * @returns Reference to `this` in order to allow method chaining
7466
8349
  */
7467
8350
  setShowResetAll(
7468
8351
  /**
@@ -7472,6 +8355,8 @@ declare namespace sap {
7472
8355
  ): this;
7473
8356
  /**
7474
8357
  * Sets the associated {@link #getTable table}.
8358
+ *
8359
+ * @returns Reference to `this` in order to allow method chaining
7475
8360
  */
7476
8361
  setTable(
7477
8362
  /**
@@ -7529,6 +8414,8 @@ declare namespace sap {
7529
8414
  * information contained in `oClassInfo`.
7530
8415
  *
7531
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
7532
8419
  */
7533
8420
  static extend<T extends Record<string, unknown>>(
7534
8421
  /**
@@ -7547,6 +8434,8 @@ declare namespace sap {
7547
8434
  ): Function;
7548
8435
  /**
7549
8436
  * Returns a metadata object for class sap.ui.table.TreeTable.
8437
+ *
8438
+ * @returns Metadata object describing this class
7550
8439
  */
7551
8440
  static getMetadata(): sap.ui.core.ElementMetadata;
7552
8441
  /**
@@ -7555,6 +8444,8 @@ declare namespace sap {
7555
8444
  *
7556
8445
  * Please also take notice of the fact, that "addSelectionInterval" does not change any other selection.
7557
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
7558
8449
  */
7559
8450
  addSelectionInterval(
7560
8451
  /**
@@ -7574,6 +8465,8 @@ declare namespace sap {
7574
8465
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7575
8466
  *
7576
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
7577
8470
  */
7578
8471
  attachToggleOpenState(
7579
8472
  /**
@@ -7598,6 +8491,8 @@ declare namespace sap {
7598
8491
  * otherwise it will be bound to this `sap.ui.table.TreeTable` itself.
7599
8492
  *
7600
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
7601
8496
  */
7602
8497
  attachToggleOpenState(
7603
8498
  /**
@@ -7611,6 +8506,8 @@ declare namespace sap {
7611
8506
  ): this;
7612
8507
  /**
7613
8508
  * Collapses one or more rows.
8509
+ *
8510
+ * @returns `this` to allow method chaining
7614
8511
  */
7615
8512
  collapse(
7616
8513
  /**
@@ -7620,6 +8517,8 @@ declare namespace sap {
7620
8517
  ): this;
7621
8518
  /**
7622
8519
  * Collapses all nodes (and lower if collapseRecursive is activated)
8520
+ *
8521
+ * @returns `this` to allow method chaining
7623
8522
  */
7624
8523
  collapseAll(): this;
7625
8524
  /**
@@ -7627,6 +8526,8 @@ declare namespace sap {
7627
8526
  * this `sap.ui.table.TreeTable`.
7628
8527
  *
7629
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
7630
8531
  */
7631
8532
  detachToggleOpenState(
7632
8533
  /**
@@ -7640,6 +8541,8 @@ declare namespace sap {
7640
8541
  ): this;
7641
8542
  /**
7642
8543
  * Expands one or more rows.
8544
+ *
8545
+ * @returns `this` to allow method chaining
7643
8546
  */
7644
8547
  expand(
7645
8548
  /**
@@ -7650,10 +8553,12 @@ declare namespace sap {
7650
8553
  /**
7651
8554
  * Expands all nodes starting from the root level to the given level 'iLevel'.
7652
8555
  *
7653
- * Only supported with ODataModel v2, when running in OperationMode.Client or OperationMode.Auto. Fully
7654
- * 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`.
7655
8558
  *
7656
8559
  * Please also see `sap.ui.model.odata.OperationMode`.
8560
+ *
8561
+ * @returns a reference on the TreeTable control, can be used for chaining
7657
8562
  */
7658
8563
  expandToLevel(
7659
8564
  /**
@@ -7663,6 +8568,8 @@ declare namespace sap {
7663
8568
  ): this;
7664
8569
  /**
7665
8570
  * Fires event {@link #event:toggleOpenState toggleOpenState} to attached listeners.
8571
+ *
8572
+ * @returns Reference to `this` in order to allow method chaining
7666
8573
  */
7667
8574
  fireToggleOpenState(
7668
8575
  /**
@@ -7707,6 +8614,8 @@ declare namespace sap {
7707
8614
  *
7708
8615
  *
7709
8616
  * Default value is `true`.
8617
+ *
8618
+ * @returns Value of property `collapseRecursive`
7710
8619
  */
7711
8620
  getCollapseRecursive(): boolean;
7712
8621
  /**
@@ -7739,6 +8648,8 @@ declare namespace sap {
7739
8648
  *
7740
8649
  *
7741
8650
  * Default value is `false`.
8651
+ *
8652
+ * @returns Value of property `expandFirstLevel`
7742
8653
  */
7743
8654
  getExpandFirstLevel(): boolean;
7744
8655
  /**
@@ -7751,6 +8662,8 @@ declare namespace sap {
7751
8662
  * Gets current value of property {@link #getGroupHeaderProperty groupHeaderProperty}.
7752
8663
  *
7753
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`
7754
8667
  */
7755
8668
  getGroupHeaderProperty(): string;
7756
8669
  /**
@@ -7776,6 +8689,8 @@ declare namespace sap {
7776
8689
  *
7777
8690
  *
7778
8691
  * Default value is `0`.
8692
+ *
8693
+ * @returns Value of property `rootLevel`
7779
8694
  */
7780
8695
  getRootLevel(): int;
7781
8696
  /**
@@ -7784,6 +8699,8 @@ declare namespace sap {
7784
8699
  * Please be aware of the following: Due to performance/network traffic reasons, the getSelectedIndices
7785
8700
  * function returns only all indices of actually selected rows/tree nodes. Unknown rows/nodes (as in "not
7786
8701
  * yet loaded" to the client), will not be returned.
8702
+ *
8703
+ * @returns an array containing all selected indices
7787
8704
  */
7788
8705
  getSelectedIndices(): int[];
7789
8706
  /**
@@ -7793,10 +8710,14 @@ declare namespace sap {
7793
8710
  * used to do the grouping for an OData service on the backend and visualize this in a table.
7794
8711
  *
7795
8712
  * Default value is `false`.
8713
+ *
8714
+ * @returns Value of property `useGroupMode`
7796
8715
  */
7797
8716
  getUseGroupMode(): boolean;
7798
8717
  /**
7799
8718
  * Checks whether the row is expanded or collapsed.
8719
+ *
8720
+ * @returns `true` if the row is expanded, `false` if it is collapsed
7800
8721
  */
7801
8722
  isExpanded(
7802
8723
  /**
@@ -7807,6 +8728,8 @@ declare namespace sap {
7807
8728
  /**
7808
8729
  * Removes the given selection interval from the selection. In case of single selection, only `iIndexTo`
7809
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
7810
8733
  */
7811
8734
  removeSelectionInterval(
7812
8735
  /**
@@ -7825,6 +8748,8 @@ declare namespace sap {
7825
8748
  * tree are selected. Additional rows or tree nodes that come into view through scrolling or paging are
7826
8749
  * also selected immediately as soon as they get visible. However, `SelectAll` does not retrieve any data
7827
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
7828
8753
  */
7829
8754
  selectAll(): this;
7830
8755
  /**
@@ -7853,6 +8778,8 @@ declare namespace sap {
7853
8778
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7854
8779
  *
7855
8780
  * Default value is `true`.
8781
+ *
8782
+ * @returns Reference to `this` in order to allow method chaining
7856
8783
  */
7857
8784
  setCollapseRecursive(
7858
8785
  /**
@@ -7866,6 +8793,8 @@ declare namespace sap {
7866
8793
  * The property `enableGrouping` is not supported by the `TreeTable` control.
7867
8794
  * See:
7868
8795
  * sap.ui.table.TreeTable#setUseGroupMode
8796
+ *
8797
+ * @returns Reference to `this` in order to allow method chaining
7869
8798
  */
7870
8799
  setEnableGrouping(bValue: boolean): this;
7871
8800
  /**
@@ -7894,6 +8823,8 @@ declare namespace sap {
7894
8823
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7895
8824
  *
7896
8825
  * Default value is `false`.
8826
+ *
8827
+ * @returns Reference to `this` in order to allow method chaining
7897
8828
  */
7898
8829
  setExpandFirstLevel(
7899
8830
  /**
@@ -7907,6 +8838,8 @@ declare namespace sap {
7907
8838
  * **This property is not supportd for the TreeTable and will be ignored!**
7908
8839
  *
7909
8840
  * Default value is `0`
8841
+ *
8842
+ * @returns `this` to allow method chaining
7910
8843
  */
7911
8844
  setFixedRowCount(
7912
8845
  /**
@@ -7918,6 +8851,8 @@ declare namespace sap {
7918
8851
  * @deprecated (since 1.28)
7919
8852
  *
7920
8853
  * The `groupBy` association is not supported by the `TreeTable` control.
8854
+ *
8855
+ * @returns Reference to `this` in order to allow method chaining
7921
8856
  */
7922
8857
  setGroupBy(oColumn: sap.ui.table.Column | sap.ui.core.ID): this;
7923
8858
  /**
@@ -7926,6 +8861,8 @@ declare namespace sap {
7926
8861
  * The property name of the rows data which will be displayed as a group header if the group mode is enabled
7927
8862
  *
7928
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
7929
8866
  */
7930
8867
  setGroupHeaderProperty(
7931
8868
  /**
@@ -7958,6 +8895,8 @@ declare namespace sap {
7958
8895
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
7959
8896
  *
7960
8897
  * Default value is `0`.
8898
+ *
8899
+ * @returns Reference to `this` in order to allow method chaining
7961
8900
  */
7962
8901
  setRootLevel(
7963
8902
  /**
@@ -7969,6 +8908,8 @@ declare namespace sap {
7969
8908
  * Sets the selected index In a TreeTable you can only select indices, which correspond to the currently
7970
8909
  * visualized tree. Invisible tree nodes (e.g. collapsed child nodes) can not be selected via Index, because
7971
8910
  * they do not correspond to a TreeTable row.
8911
+ *
8912
+ * @returns a reference on the TreeTable control, can be used for chaining
7972
8913
  */
7973
8914
  setSelectedIndex(
7974
8915
  /**
@@ -7980,6 +8921,8 @@ declare namespace sap {
7980
8921
  * Sets the selection of the TreeTable to the given range (including boundaries). Beware: The previous selection
7981
8922
  * will be lost/overridden. If this is not wanted, please use "addSelectionInterval" and "removeSelectionInterval".
7982
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
7983
8926
  */
7984
8927
  setSelectionInterval(
7985
8928
  /**
@@ -8001,6 +8944,8 @@ declare namespace sap {
8001
8944
  * **Note:** In flat mode the user of the table cannot expand or collapse certain nodes and the hierarchy
8002
8945
  * is not visible to the user. The caller of this function has to ensure to use this option only with non-hierarchical
8003
8946
  * data.
8947
+ *
8948
+ * @returns Reference to `this` in order to allow method chaining
8004
8949
  */
8005
8950
  setUseFlatMode(
8006
8951
  /**
@@ -8017,6 +8962,8 @@ declare namespace sap {
8017
8962
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
8018
8963
  *
8019
8964
  * Default value is `false`.
8965
+ *
8966
+ * @returns Reference to `this` in order to allow method chaining
8020
8967
  */
8021
8968
  setUseGroupMode(
8022
8969
  /**