@sapui5/ts-types 1.84.48 → 1.84.50

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +1 -1
  3. package/types/sap.chart.d.ts +1 -1
  4. package/types/sap.f.d.ts +1 -1
  5. package/types/sap.fe.core.d.ts +1 -1
  6. package/types/sap.fe.macros.d.ts +1 -1
  7. package/types/{sap.fe.navigation-1.84.16-d.ts → sap.fe.navigation-1.84.17-d.ts} +1 -1
  8. package/types/sap.fe.plugins.d.ts +1 -1
  9. package/types/sap.fe.templates.d.ts +1 -1
  10. package/types/sap.fe.test.d.ts +1 -1
  11. package/types/sap.fe.tools.d.ts +1 -1
  12. package/types/sap.gantt.d.ts +1 -1
  13. package/types/sap.m.d.ts +1 -1
  14. package/types/sap.makit.d.ts +1 -1
  15. package/types/sap.me.d.ts +1 -1
  16. package/types/sap.ndc.d.ts +1 -1
  17. package/types/sap.suite.ui.generic.template.d.ts +1 -1
  18. package/types/sap.suite.ui.microchart.d.ts +1 -1
  19. package/types/sap.tnt.d.ts +1 -1
  20. package/types/sap.ui.codeeditor.d.ts +1 -1
  21. package/types/sap.ui.commons.d.ts +1 -1
  22. package/types/sap.ui.comp.d.ts +1 -1
  23. package/types/sap.ui.core.d.ts +18 -12
  24. package/types/sap.ui.dt.d.ts +1 -1
  25. package/types/sap.ui.export.d.ts +3 -3
  26. package/types/sap.ui.fl.d.ts +1 -1
  27. package/types/sap.ui.generic.app.d.ts +1 -1
  28. package/types/sap.ui.generic.template.d.ts +1 -1
  29. package/types/sap.ui.integration.d.ts +1 -1
  30. package/types/sap.ui.layout.d.ts +1 -1
  31. package/types/sap.ui.mdc.d.ts +1 -1
  32. package/types/sap.ui.richtexteditor.d.ts +1 -1
  33. package/types/sap.ui.rta.d.ts +1 -1
  34. package/types/sap.ui.suite.d.ts +1 -1
  35. package/types/sap.ui.support.d.ts +6 -6
  36. package/types/sap.ui.table.d.ts +1 -1
  37. package/types/sap.ui.testrecorder.d.ts +1 -1
  38. package/types/sap.ui.unified.d.ts +1 -1
  39. package/types/sap.ui.ux3.d.ts +1 -1
  40. package/types/sap.uiext.inbox.d.ts +1 -1
  41. package/types/sap.ushell.d.ts +1 -1
  42. package/types/sap.uxap.d.ts +1 -1
  43. package/types/sap.viz.d.ts +1 -1
  44. package/types/sap.zen.commons.d.ts +2810 -2
  45. package/types/sap.zen.crosstab.d.ts +947 -2
  46. package/types/sap.zen.dsh.d.ts +2410 -15
@@ -1,5 +1,950 @@
1
- // For Library Version: 1.84.33
1
+ // For Library Version: 1.84.46
2
2
 
3
3
  declare namespace sap {
4
- interface IUI5DefineDependencyNames {}
4
+ namespace zen {
5
+ /**
6
+ * @EXPERIMENTAL
7
+ *
8
+ * Design Studio Crosstab library. NOT INTENDED FOR STANDALONE USAGE.
9
+ */
10
+ namespace crosstab {
11
+ interface $CrosstabSettings extends sap.ui.core.$ControlSettings {
12
+ /**
13
+ * Width of the Crosstab.
14
+ */
15
+ width?: sap.ui.core.CSSSize;
16
+
17
+ /**
18
+ * Height of the Crosstab.
19
+ */
20
+ height?: sap.ui.core.CSSSize;
21
+ }
22
+
23
+ interface $DataCellSettings extends sap.ui.core.$ControlSettings {
24
+ /**
25
+ * the text of the data cell
26
+ */
27
+ text?: string;
28
+
29
+ /**
30
+ * the area of the data cell
31
+ */
32
+ area?: object;
33
+
34
+ /**
35
+ * the row of the data cell
36
+ */
37
+ row?: number;
38
+
39
+ /**
40
+ * the column of the data cell
41
+ */
42
+ col?: number;
43
+
44
+ /**
45
+ * the table row of the data cell
46
+ */
47
+ tableRow?: number;
48
+
49
+ /**
50
+ * the table column of the data cell
51
+ */
52
+ tableCol?: number;
53
+ }
54
+
55
+ interface $HeaderCellSettings extends sap.ui.core.$ControlSettings {
56
+ /**
57
+ * Rowspan of the cell
58
+ */
59
+ rowSpan?: number;
60
+
61
+ /**
62
+ * Colspan of the cell
63
+ */
64
+ colSpan?: number;
65
+
66
+ /**
67
+ * Text of the cell
68
+ */
69
+ text?: string;
70
+
71
+ /**
72
+ * helper to format the cell
73
+ */
74
+ formatter?: object;
75
+
76
+ /**
77
+ * whether to merge the cell if the keys are equal
78
+ */
79
+ mergeKey?: string;
80
+
81
+ /**
82
+ * sorting
83
+ */
84
+ sort?: string;
85
+
86
+ /**
87
+ * sort action
88
+ */
89
+ sortAction?: string;
90
+
91
+ /**
92
+ * area of the cell
93
+ */
94
+ area?: object;
95
+
96
+ /**
97
+ * the effective col span
98
+ */
99
+ effectiveColSpan?: number;
100
+
101
+ /**
102
+ * the effective row span
103
+ */
104
+ effectiveRowSpan?: number;
105
+
106
+ /**
107
+ * the row of the cell in the crosstab
108
+ */
109
+ row?: number;
110
+
111
+ /**
112
+ * the column of the cell in the crosstab
113
+ */
114
+ col?: number;
115
+
116
+ /**
117
+ * the level of the cell
118
+ */
119
+ level?: number;
120
+
121
+ /**
122
+ * the drillstate of the cell
123
+ */
124
+ drillState?: string;
125
+
126
+ /**
127
+ * the hierarcyh action of the cell
128
+ */
129
+ hierarchyAction?: string;
130
+
131
+ /**
132
+ * the hierarchy tooltip
133
+ */
134
+ hierarchyTooltip?: string;
135
+
136
+ /**
137
+ * the IE8 row span
138
+ */
139
+ htmlIE8RowSpan?: number;
140
+
141
+ /**
142
+ * the text sort index
143
+ */
144
+ sortTextIndex?: number;
145
+
146
+ /**
147
+ * the row of the tabe
148
+ */
149
+ tableRow?: number;
150
+
151
+ /**
152
+ * the column of the table
153
+ */
154
+ tableCol?: number;
155
+
156
+ /**
157
+ * the alignment of the cell
158
+ */
159
+ alignment?: string;
160
+
161
+ /**
162
+ * the id of the associated member
163
+ */
164
+ memberId?: string;
165
+
166
+ /**
167
+ * the id of the parent of the associated member
168
+ */
169
+ parentMemberId?: string;
170
+
171
+ /**
172
+ * the node alignment
173
+ */
174
+ nodeAlignment?: string;
175
+ }
176
+ /**
177
+ * Add your documentation for the new Crosstab
178
+ */
179
+ class Crosstab extends sap.ui.core.Control {
180
+ /**
181
+ * Constructor for a new Crosstab.
182
+ *
183
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
184
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
185
+ * of the syntax of the settings object.
186
+ */
187
+ constructor(
188
+ /**
189
+ * id for the new control, generated automatically if no id is given
190
+ */
191
+ sId?: string,
192
+ /**
193
+ * initial settings for the new control
194
+ */
195
+ mSettings?: $CrosstabSettings
196
+ );
197
+
198
+ /**
199
+ * Creates a new subclass of class sap.zen.crosstab.Crosstab with name `sClassName` and enriches it with
200
+ * the information contained in `oClassInfo`.
201
+ *
202
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
203
+ */
204
+ // @ts-ignore
205
+ static extend<T extends Record<string, unknown>>(
206
+ /**
207
+ * Name of the class being created
208
+ */
209
+ sClassName: string,
210
+ /**
211
+ * Object literal with information about the class
212
+ */
213
+ oClassInfo?: T & ThisType<T & sap.zen.crosstab.Crosstab>,
214
+ /**
215
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
216
+ * used by this class
217
+ */
218
+ FNMetaImpl?: Function
219
+ ): Function;
220
+ /**
221
+ * Gets current value of property {@link #getHeight height}.
222
+ *
223
+ * Height of the Crosstab.
224
+ */
225
+ getHeight(): sap.ui.core.CSSSize;
226
+ /**
227
+ * Returns a metadata object for class sap.zen.crosstab.Crosstab.
228
+ */
229
+ // @ts-ignore
230
+ static getMetadata(): sap.ui.core.ElementMetadata;
231
+ /**
232
+ * Gets current value of property {@link #getWidth width}.
233
+ *
234
+ * Width of the Crosstab.
235
+ */
236
+ getWidth(): sap.ui.core.CSSSize;
237
+ /**
238
+ * Sets a new value for property {@link #getHeight height}.
239
+ *
240
+ * Height of the Crosstab.
241
+ *
242
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
243
+ */
244
+ setHeight(
245
+ /**
246
+ * New value for property `height`
247
+ */
248
+ sHeight?: sap.ui.core.CSSSize
249
+ ): sap.zen.crosstab.Crosstab;
250
+ /**
251
+ * Sets a new value for property {@link #getWidth width}.
252
+ *
253
+ * Width of the Crosstab.
254
+ *
255
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
256
+ */
257
+ setWidth(
258
+ /**
259
+ * New value for property `width`
260
+ */
261
+ sWidth?: sap.ui.core.CSSSize
262
+ ): sap.zen.crosstab.Crosstab;
263
+ }
264
+ /**
265
+ * Add your documentation for the new DataCell
266
+ */
267
+ class DataCell extends sap.ui.core.Control {
268
+ /**
269
+ * Constructor for a new DataCell.
270
+ *
271
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
272
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
273
+ * of the syntax of the settings object.
274
+ */
275
+ constructor(
276
+ /**
277
+ * id for the new control, generated automatically if no id is given
278
+ */
279
+ sId?: string,
280
+ /**
281
+ * initial settings for the new control
282
+ */
283
+ mSettings?: $DataCellSettings
284
+ );
285
+
286
+ /**/
287
+ addStyle(sSStyle: string): void;
288
+ /**
289
+ * Creates a new subclass of class sap.zen.crosstab.DataCell with name `sClassName` and enriches it with
290
+ * the information contained in `oClassInfo`.
291
+ *
292
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
293
+ */
294
+ // @ts-ignore
295
+ static extend<T extends Record<string, unknown>>(
296
+ /**
297
+ * Name of the class being created
298
+ */
299
+ sClassName: string,
300
+ /**
301
+ * Object literal with information about the class
302
+ */
303
+ oClassInfo?: T & ThisType<T & sap.zen.crosstab.DataCell>,
304
+ /**
305
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
306
+ * used by this class
307
+ */
308
+ FNMetaImpl?: Function
309
+ ): Function;
310
+ /**
311
+ * Gets current value of property {@link #getArea area}.
312
+ *
313
+ * the area of the data cell
314
+ */
315
+ getArea(): object;
316
+ /**
317
+ * Gets current value of property {@link #getCol col}.
318
+ *
319
+ * the column of the data cell
320
+ */
321
+ getCol(): number;
322
+ /**
323
+ * Returns a metadata object for class sap.zen.crosstab.DataCell.
324
+ */
325
+ // @ts-ignore
326
+ static getMetadata(): sap.ui.core.ElementMetadata;
327
+ /**
328
+ * Gets current value of property {@link #getRow row}.
329
+ *
330
+ * the row of the data cell
331
+ */
332
+ getRow(): number;
333
+ /**
334
+ * Gets current value of property {@link #getTableCol tableCol}.
335
+ *
336
+ * the table column of the data cell
337
+ */
338
+ getTableCol(): number;
339
+ /**
340
+ * Gets current value of property {@link #getTableRow tableRow}.
341
+ *
342
+ * the table row of the data cell
343
+ */
344
+ getTableRow(): number;
345
+ /**
346
+ * Gets current value of property {@link #getText text}.
347
+ *
348
+ * the text of the data cell
349
+ */
350
+ getText(): string;
351
+ /**
352
+ * Sets a new value for property {@link #getArea area}.
353
+ *
354
+ * the area of the data cell
355
+ *
356
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
357
+ */
358
+ setArea(
359
+ /**
360
+ * New value for property `area`
361
+ */
362
+ oArea?: object
363
+ ): sap.zen.crosstab.DataCell;
364
+ /**
365
+ * Sets a new value for property {@link #getCol col}.
366
+ *
367
+ * the column of the data cell
368
+ *
369
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
370
+ */
371
+ setCol(
372
+ /**
373
+ * New value for property `col`
374
+ */
375
+ iCol?: number
376
+ ): sap.zen.crosstab.DataCell;
377
+ /**
378
+ * Sets a new value for property {@link #getRow row}.
379
+ *
380
+ * the row of the data cell
381
+ *
382
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
383
+ */
384
+ setRow(
385
+ /**
386
+ * New value for property `row`
387
+ */
388
+ iRow?: number
389
+ ): sap.zen.crosstab.DataCell;
390
+ /**
391
+ * Sets a new value for property {@link #getTableCol tableCol}.
392
+ *
393
+ * the table column of the data cell
394
+ *
395
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
396
+ */
397
+ setTableCol(
398
+ /**
399
+ * New value for property `tableCol`
400
+ */
401
+ iTableCol?: number
402
+ ): sap.zen.crosstab.DataCell;
403
+ /**
404
+ * Sets a new value for property {@link #getTableRow tableRow}.
405
+ *
406
+ * the table row of the data cell
407
+ *
408
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
409
+ */
410
+ setTableRow(
411
+ /**
412
+ * New value for property `tableRow`
413
+ */
414
+ iTableRow?: number
415
+ ): sap.zen.crosstab.DataCell;
416
+ /**
417
+ * Sets a new value for property {@link #getText text}.
418
+ *
419
+ * the text of the data cell
420
+ *
421
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
422
+ */
423
+ setText(
424
+ /**
425
+ * New value for property `text`
426
+ */
427
+ sText?: string
428
+ ): sap.zen.crosstab.DataCell;
429
+ }
430
+ /**
431
+ * Add your documentation for the new HeaderCell
432
+ */
433
+ class HeaderCell extends sap.ui.core.Control {
434
+ /**
435
+ * Constructor for a new HeaderCell.
436
+ *
437
+ * Accepts an object literal `mSettings` that defines initial property values, aggregated and associated
438
+ * objects as well as event handlers. See {@link sap.ui.base.ManagedObject#constructor} for a general description
439
+ * of the syntax of the settings object.
440
+ */
441
+ constructor(
442
+ /**
443
+ * id for the new control, generated automatically if no id is given
444
+ */
445
+ sId?: string,
446
+ /**
447
+ * initial settings for the new control
448
+ */
449
+ mSettings?: $HeaderCellSettings
450
+ );
451
+
452
+ /**
453
+ * Creates a new subclass of class sap.zen.crosstab.HeaderCell with name `sClassName` and enriches it with
454
+ * the information contained in `oClassInfo`.
455
+ *
456
+ * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
457
+ */
458
+ // @ts-ignore
459
+ static extend<T extends Record<string, unknown>>(
460
+ /**
461
+ * Name of the class being created
462
+ */
463
+ sClassName: string,
464
+ /**
465
+ * Object literal with information about the class
466
+ */
467
+ oClassInfo?: T & ThisType<T & sap.zen.crosstab.HeaderCell>,
468
+ /**
469
+ * Constructor function for the metadata object; if not given, it defaults to the metadata implementation
470
+ * used by this class
471
+ */
472
+ FNMetaImpl?: Function
473
+ ): Function;
474
+ /**
475
+ * Gets current value of property {@link #getAlignment alignment}.
476
+ *
477
+ * the alignment of the cell
478
+ */
479
+ getAlignment(): string;
480
+ /**
481
+ * Gets current value of property {@link #getArea area}.
482
+ *
483
+ * area of the cell
484
+ */
485
+ getArea(): object;
486
+ /**
487
+ * Gets current value of property {@link #getCol col}.
488
+ *
489
+ * the column of the cell in the crosstab
490
+ */
491
+ getCol(): number;
492
+ /**
493
+ * Gets current value of property {@link #getColSpan colSpan}.
494
+ *
495
+ * Colspan of the cell
496
+ */
497
+ getColSpan(): number;
498
+ /**
499
+ * Gets current value of property {@link #getDrillState drillState}.
500
+ *
501
+ * the drillstate of the cell
502
+ */
503
+ getDrillState(): string;
504
+ /**
505
+ * Gets current value of property {@link #getEffectiveColSpan effectiveColSpan}.
506
+ *
507
+ * the effective col span
508
+ */
509
+ getEffectiveColSpan(): number;
510
+ /**
511
+ * Gets current value of property {@link #getEffectiveRowSpan effectiveRowSpan}.
512
+ *
513
+ * the effective row span
514
+ */
515
+ getEffectiveRowSpan(): number;
516
+ /**
517
+ * Gets current value of property {@link #getFormatter formatter}.
518
+ *
519
+ * helper to format the cell
520
+ */
521
+ getFormatter(): object;
522
+ /**
523
+ * Gets current value of property {@link #getHierarchyAction hierarchyAction}.
524
+ *
525
+ * the hierarcyh action of the cell
526
+ */
527
+ getHierarchyAction(): string;
528
+ /**
529
+ * Gets current value of property {@link #getHierarchyTooltip hierarchyTooltip}.
530
+ *
531
+ * the hierarchy tooltip
532
+ */
533
+ getHierarchyTooltip(): string;
534
+ /**
535
+ * Gets current value of property {@link #getHtmlIE8RowSpan htmlIE8RowSpan}.
536
+ *
537
+ * the IE8 row span
538
+ *
539
+ * Default value is `1`.
540
+ */
541
+ getHtmlIE8RowSpan(): number;
542
+ /**
543
+ * Gets current value of property {@link #getLevel level}.
544
+ *
545
+ * the level of the cell
546
+ */
547
+ getLevel(): number;
548
+ /**
549
+ * Gets current value of property {@link #getMemberId memberId}.
550
+ *
551
+ * the id of the associated member
552
+ */
553
+ getMemberId(): string;
554
+ /**
555
+ * Gets current value of property {@link #getMergeKey mergeKey}.
556
+ *
557
+ * whether to merge the cell if the keys are equal
558
+ */
559
+ getMergeKey(): string;
560
+ /**
561
+ * Returns a metadata object for class sap.zen.crosstab.HeaderCell.
562
+ */
563
+ // @ts-ignore
564
+ static getMetadata(): sap.ui.core.ElementMetadata;
565
+ /**
566
+ * Gets current value of property {@link #getNodeAlignment nodeAlignment}.
567
+ *
568
+ * the node alignment
569
+ */
570
+ getNodeAlignment(): string;
571
+ /**
572
+ * Gets current value of property {@link #getParentMemberId parentMemberId}.
573
+ *
574
+ * the id of the parent of the associated member
575
+ */
576
+ getParentMemberId(): string;
577
+ /**
578
+ * Gets current value of property {@link #getRow row}.
579
+ *
580
+ * the row of the cell in the crosstab
581
+ */
582
+ getRow(): number;
583
+ /**
584
+ * Gets current value of property {@link #getRowSpan rowSpan}.
585
+ *
586
+ * Rowspan of the cell
587
+ */
588
+ getRowSpan(): number;
589
+ /**
590
+ * Gets current value of property {@link #getSort sort}.
591
+ *
592
+ * sorting
593
+ */
594
+ getSort(): string;
595
+ /**
596
+ * Gets current value of property {@link #getSortAction sortAction}.
597
+ *
598
+ * sort action
599
+ */
600
+ getSortAction(): string;
601
+ /**
602
+ * Gets current value of property {@link #getSortTextIndex sortTextIndex}.
603
+ *
604
+ * the text sort index
605
+ */
606
+ getSortTextIndex(): number;
607
+ /**
608
+ * Gets current value of property {@link #getTableCol tableCol}.
609
+ *
610
+ * the column of the table
611
+ */
612
+ getTableCol(): number;
613
+ /**
614
+ * Gets current value of property {@link #getTableRow tableRow}.
615
+ *
616
+ * the row of the tabe
617
+ */
618
+ getTableRow(): number;
619
+ /**
620
+ * Gets current value of property {@link #getText text}.
621
+ *
622
+ * Text of the cell
623
+ */
624
+ getText(): string;
625
+ /**
626
+ * Sets a new value for property {@link #getAlignment alignment}.
627
+ *
628
+ * the alignment of the cell
629
+ *
630
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
631
+ */
632
+ setAlignment(
633
+ /**
634
+ * New value for property `alignment`
635
+ */
636
+ sAlignment?: string
637
+ ): sap.zen.crosstab.HeaderCell;
638
+ /**
639
+ * Sets a new value for property {@link #getArea area}.
640
+ *
641
+ * area of the cell
642
+ *
643
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
644
+ */
645
+ setArea(
646
+ /**
647
+ * New value for property `area`
648
+ */
649
+ oArea?: object
650
+ ): sap.zen.crosstab.HeaderCell;
651
+ /**
652
+ * Sets a new value for property {@link #getCol col}.
653
+ *
654
+ * the column of the cell in the crosstab
655
+ *
656
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
657
+ */
658
+ setCol(
659
+ /**
660
+ * New value for property `col`
661
+ */
662
+ iCol?: number
663
+ ): sap.zen.crosstab.HeaderCell;
664
+ /**
665
+ * Sets a new value for property {@link #getColSpan colSpan}.
666
+ *
667
+ * Colspan of the cell
668
+ *
669
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
670
+ */
671
+ setColSpan(
672
+ /**
673
+ * New value for property `colSpan`
674
+ */
675
+ iColSpan?: number
676
+ ): sap.zen.crosstab.HeaderCell;
677
+ /**
678
+ * Sets a new value for property {@link #getDrillState drillState}.
679
+ *
680
+ * the drillstate of the cell
681
+ *
682
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
683
+ */
684
+ setDrillState(
685
+ /**
686
+ * New value for property `drillState`
687
+ */
688
+ sDrillState?: string
689
+ ): sap.zen.crosstab.HeaderCell;
690
+ /**
691
+ * Sets a new value for property {@link #getEffectiveColSpan effectiveColSpan}.
692
+ *
693
+ * the effective col span
694
+ *
695
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
696
+ */
697
+ setEffectiveColSpan(
698
+ /**
699
+ * New value for property `effectiveColSpan`
700
+ */
701
+ iEffectiveColSpan?: number
702
+ ): sap.zen.crosstab.HeaderCell;
703
+ /**
704
+ * Sets a new value for property {@link #getEffectiveRowSpan effectiveRowSpan}.
705
+ *
706
+ * the effective row span
707
+ *
708
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
709
+ */
710
+ setEffectiveRowSpan(
711
+ /**
712
+ * New value for property `effectiveRowSpan`
713
+ */
714
+ iEffectiveRowSpan?: number
715
+ ): sap.zen.crosstab.HeaderCell;
716
+ /**
717
+ * Sets a new value for property {@link #getFormatter formatter}.
718
+ *
719
+ * helper to format the cell
720
+ *
721
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
722
+ */
723
+ setFormatter(
724
+ /**
725
+ * New value for property `formatter`
726
+ */
727
+ oFormatter?: object
728
+ ): sap.zen.crosstab.HeaderCell;
729
+ /**
730
+ * Sets a new value for property {@link #getHierarchyAction hierarchyAction}.
731
+ *
732
+ * the hierarcyh action of the cell
733
+ *
734
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
735
+ */
736
+ setHierarchyAction(
737
+ /**
738
+ * New value for property `hierarchyAction`
739
+ */
740
+ sHierarchyAction?: string
741
+ ): sap.zen.crosstab.HeaderCell;
742
+ /**
743
+ * Sets a new value for property {@link #getHierarchyTooltip hierarchyTooltip}.
744
+ *
745
+ * the hierarchy tooltip
746
+ *
747
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
748
+ */
749
+ setHierarchyTooltip(
750
+ /**
751
+ * New value for property `hierarchyTooltip`
752
+ */
753
+ sHierarchyTooltip?: string
754
+ ): sap.zen.crosstab.HeaderCell;
755
+ /**
756
+ * Sets a new value for property {@link #getHtmlIE8RowSpan htmlIE8RowSpan}.
757
+ *
758
+ * the IE8 row span
759
+ *
760
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
761
+ *
762
+ * Default value is `1`.
763
+ */
764
+ setHtmlIE8RowSpan(
765
+ /**
766
+ * New value for property `htmlIE8RowSpan`
767
+ */
768
+ iHtmlIE8RowSpan?: number
769
+ ): sap.zen.crosstab.HeaderCell;
770
+ /**
771
+ * Sets a new value for property {@link #getLevel level}.
772
+ *
773
+ * the level of the cell
774
+ *
775
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
776
+ */
777
+ setLevel(
778
+ /**
779
+ * New value for property `level`
780
+ */
781
+ iLevel?: number
782
+ ): sap.zen.crosstab.HeaderCell;
783
+ /**
784
+ * Sets a new value for property {@link #getMemberId memberId}.
785
+ *
786
+ * the id of the associated member
787
+ *
788
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
789
+ */
790
+ setMemberId(
791
+ /**
792
+ * New value for property `memberId`
793
+ */
794
+ sMemberId?: string
795
+ ): sap.zen.crosstab.HeaderCell;
796
+ /**
797
+ * Sets a new value for property {@link #getMergeKey mergeKey}.
798
+ *
799
+ * whether to merge the cell if the keys are equal
800
+ *
801
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
802
+ */
803
+ setMergeKey(
804
+ /**
805
+ * New value for property `mergeKey`
806
+ */
807
+ sMergeKey?: string
808
+ ): sap.zen.crosstab.HeaderCell;
809
+ /**
810
+ * Sets a new value for property {@link #getNodeAlignment nodeAlignment}.
811
+ *
812
+ * the node alignment
813
+ *
814
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
815
+ */
816
+ setNodeAlignment(
817
+ /**
818
+ * New value for property `nodeAlignment`
819
+ */
820
+ sNodeAlignment?: string
821
+ ): sap.zen.crosstab.HeaderCell;
822
+ /**
823
+ * Sets a new value for property {@link #getParentMemberId parentMemberId}.
824
+ *
825
+ * the id of the parent of the associated member
826
+ *
827
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
828
+ */
829
+ setParentMemberId(
830
+ /**
831
+ * New value for property `parentMemberId`
832
+ */
833
+ sParentMemberId?: string
834
+ ): sap.zen.crosstab.HeaderCell;
835
+ /**
836
+ * Sets a new value for property {@link #getRow row}.
837
+ *
838
+ * the row of the cell in the crosstab
839
+ *
840
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
841
+ */
842
+ setRow(
843
+ /**
844
+ * New value for property `row`
845
+ */
846
+ iRow?: number
847
+ ): sap.zen.crosstab.HeaderCell;
848
+ /**
849
+ * Sets a new value for property {@link #getRowSpan rowSpan}.
850
+ *
851
+ * Rowspan of the cell
852
+ *
853
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
854
+ */
855
+ setRowSpan(
856
+ /**
857
+ * New value for property `rowSpan`
858
+ */
859
+ iRowSpan?: number
860
+ ): sap.zen.crosstab.HeaderCell;
861
+ /**
862
+ * Sets a new value for property {@link #getSort sort}.
863
+ *
864
+ * sorting
865
+ *
866
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
867
+ */
868
+ setSort(
869
+ /**
870
+ * New value for property `sort`
871
+ */
872
+ sSort?: string
873
+ ): sap.zen.crosstab.HeaderCell;
874
+ /**
875
+ * Sets a new value for property {@link #getSortAction sortAction}.
876
+ *
877
+ * sort action
878
+ *
879
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
880
+ */
881
+ setSortAction(
882
+ /**
883
+ * New value for property `sortAction`
884
+ */
885
+ sSortAction?: string
886
+ ): sap.zen.crosstab.HeaderCell;
887
+ /**
888
+ * Sets a new value for property {@link #getSortTextIndex sortTextIndex}.
889
+ *
890
+ * the text sort index
891
+ *
892
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
893
+ */
894
+ setSortTextIndex(
895
+ /**
896
+ * New value for property `sortTextIndex`
897
+ */
898
+ iSortTextIndex?: number
899
+ ): sap.zen.crosstab.HeaderCell;
900
+ /**
901
+ * Sets a new value for property {@link #getTableCol tableCol}.
902
+ *
903
+ * the column of the table
904
+ *
905
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
906
+ */
907
+ setTableCol(
908
+ /**
909
+ * New value for property `tableCol`
910
+ */
911
+ iTableCol?: number
912
+ ): sap.zen.crosstab.HeaderCell;
913
+ /**
914
+ * Sets a new value for property {@link #getTableRow tableRow}.
915
+ *
916
+ * the row of the tabe
917
+ *
918
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
919
+ */
920
+ setTableRow(
921
+ /**
922
+ * New value for property `tableRow`
923
+ */
924
+ iTableRow?: number
925
+ ): sap.zen.crosstab.HeaderCell;
926
+ /**
927
+ * Sets a new value for property {@link #getText text}.
928
+ *
929
+ * Text of the cell
930
+ *
931
+ * When called with a value of `null` or `undefined`, the default value of the property will be restored.
932
+ */
933
+ setText(
934
+ /**
935
+ * New value for property `text`
936
+ */
937
+ sText?: string
938
+ ): sap.zen.crosstab.HeaderCell;
939
+ }
940
+ }
941
+ }
942
+
943
+ interface IUI5DefineDependencyNames {
944
+ "sap/zen/crosstab/Crosstab": undefined;
945
+
946
+ "sap/zen/crosstab/DataCell": undefined;
947
+
948
+ "sap/zen/crosstab/HeaderCell": undefined;
949
+ }
5
950
  }