@types/office-js-preview 1.0.629 → 1.0.631

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.
@@ -688,16 +688,16 @@ declare namespace Office {
688
688
  * Occurs in Outlook on the web and the new Outlook on Windows when messages or file attachments in the Outlook client window are
689
689
  * dragged then dropped into the task pane of an add-in.
690
690
  *
691
- * To add an event handler for the `ItemDraggedAndDropped` event, use the `addHandlerAsync` method of the `Mailbox` object.
691
+ * To add an event handler for the `DragAndDropEvent` event, use the `addHandlerAsync` method of the `Mailbox` object.
692
692
  * The event handler receives an argument of type
693
693
  * {@link https://learn.microsoft.com/javascript/api/outlook/office.draganddropeventargs | Office.DragAndDropEventArgs}.
694
694
  *
695
- * **Important**: The `ItemDraggedAndDropped` event isn't supported in Outlook on Windows (classic) and on Mac. If the `ItemDraggedAndDropped` handler
695
+ * **Important**: The `DragAndDropEvent` event isn't supported in Outlook on Windows (classic) and on Mac. If the `DragAndDropEvent` handler
696
696
  * runs on these clients, an error occurs ("This event isn't supported on this platform.").
697
697
  *
698
698
  * [Api set: Mailbox 1.5]
699
699
  */
700
- ItemDraggedAndDropped,
700
+ DragAndDropEvent,
701
701
  /**
702
702
  * Triggers when a `customXmlPart` node is deleted.
703
703
  */
@@ -14585,7 +14585,7 @@ declare namespace Office {
14585
14585
  }
14586
14586
  /**
14587
14587
  * Provides details about the mouse pointer position and the messages or file attachments being dragged and dropped into an add-in's task pane when the
14588
- * `Office.EventType.ItemDraggedAndDropped` event is raised.
14588
+ * `Office.EventType.DragAndDropEvent` event is raised.
14589
14589
  *
14590
14590
  * @remarks
14591
14591
  *
@@ -172302,8 +172302,7 @@ declare namespace PowerPoint {
172302
172302
  * Represents the properties for a table cell border.
172303
172303
  *
172304
172304
  * @remarks
172305
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172306
- * @beta
172305
+ * [Api set: PowerPointApi 1.9]
172307
172306
  */
172308
172307
  class Border extends OfficeExtension.ClientObject {
172309
172308
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -172312,32 +172311,28 @@ declare namespace PowerPoint {
172312
172311
  * Represents the line color in the hexadecimal format #RRGGBB (e.g., "FFA500") or as a named HTML color value (e.g., "orange").
172313
172312
  *
172314
172313
  * @remarks
172315
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172316
- * @beta
172314
+ * [Api set: PowerPointApi 1.9]
172317
172315
  */
172318
172316
  color: string | undefined;
172319
172317
  /**
172320
172318
  * Represents the dash style of the line.
172321
172319
  *
172322
172320
  * @remarks
172323
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172324
- * @beta
172321
+ * [Api set: PowerPointApi 1.9]
172325
172322
  */
172326
172323
  dashStyle: PowerPoint.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot" | undefined;
172327
172324
  /**
172328
172325
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear).
172329
172326
  *
172330
172327
  * @remarks
172331
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172332
- * @beta
172328
+ * [Api set: PowerPointApi 1.9]
172333
172329
  */
172334
172330
  transparency: number | undefined;
172335
172331
  /**
172336
172332
  * Represents the weight of the line, in points.
172337
172333
  *
172338
172334
  * @remarks
172339
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172340
- * @beta
172335
+ * [Api set: PowerPointApi 1.9]
172341
172336
  */
172342
172337
  weight: number | undefined;
172343
172338
  /**
@@ -172371,8 +172366,7 @@ declare namespace PowerPoint {
172371
172366
  * Represents the borders for a table cell.
172372
172367
  *
172373
172368
  * @remarks
172374
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172375
- * @beta
172369
+ * [Api set: PowerPointApi 1.9]
172376
172370
  */
172377
172371
  class Borders extends OfficeExtension.ClientObject {
172378
172372
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -172381,48 +172375,42 @@ declare namespace PowerPoint {
172381
172375
  * Gets the bottom border.
172382
172376
  *
172383
172377
  * @remarks
172384
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172385
- * @beta
172378
+ * [Api set: PowerPointApi 1.9]
172386
172379
  */
172387
172380
  readonly bottom: PowerPoint.Border;
172388
172381
  /**
172389
172382
  * Gets the diagonal border (top-left to bottom-right).
172390
172383
  *
172391
172384
  * @remarks
172392
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172393
- * @beta
172385
+ * [Api set: PowerPointApi 1.9]
172394
172386
  */
172395
172387
  readonly diagonalDown: PowerPoint.Border;
172396
172388
  /**
172397
172389
  * Gets the diagonal border (bottom-left to top-right).
172398
172390
  *
172399
172391
  * @remarks
172400
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172401
- * @beta
172392
+ * [Api set: PowerPointApi 1.9]
172402
172393
  */
172403
172394
  readonly diagonalUp: PowerPoint.Border;
172404
172395
  /**
172405
172396
  * Gets the left border.
172406
172397
  *
172407
172398
  * @remarks
172408
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172409
- * @beta
172399
+ * [Api set: PowerPointApi 1.9]
172410
172400
  */
172411
172401
  readonly left: PowerPoint.Border;
172412
172402
  /**
172413
172403
  * Gets the right border.
172414
172404
  *
172415
172405
  * @remarks
172416
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172417
- * @beta
172406
+ * [Api set: PowerPointApi 1.9]
172418
172407
  */
172419
172408
  readonly right: PowerPoint.Border;
172420
172409
  /**
172421
172410
  * Gets the top border.
172422
172411
  *
172423
172412
  * @remarks
172424
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172425
- * @beta
172413
+ * [Api set: PowerPointApi 1.9]
172426
172414
  */
172427
172415
  readonly top: PowerPoint.Border;
172428
172416
  /**
@@ -172456,8 +172444,7 @@ declare namespace PowerPoint {
172456
172444
  * Represents the margins of a table cell.
172457
172445
  *
172458
172446
  * @remarks
172459
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172460
- * @beta
172447
+ * [Api set: PowerPointApi 1.9]
172461
172448
  */
172462
172449
  class Margins extends OfficeExtension.ClientObject {
172463
172450
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -172466,32 +172453,28 @@ declare namespace PowerPoint {
172466
172453
  * Specifies the bottom margin in points.
172467
172454
  *
172468
172455
  * @remarks
172469
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172470
- * @beta
172456
+ * [Api set: PowerPointApi 1.9]
172471
172457
  */
172472
172458
  bottom: number | undefined;
172473
172459
  /**
172474
172460
  * Specifies the left margin in points.
172475
172461
  *
172476
172462
  * @remarks
172477
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172478
- * @beta
172463
+ * [Api set: PowerPointApi 1.9]
172479
172464
  */
172480
172465
  left: number | undefined;
172481
172466
  /**
172482
172467
  * Specifies the right margin in points.
172483
172468
  *
172484
172469
  * @remarks
172485
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172486
- * @beta
172470
+ * [Api set: PowerPointApi 1.9]
172487
172471
  */
172488
172472
  right: number | undefined;
172489
172473
  /**
172490
172474
  * Specifies the top margin in points.
172491
172475
  *
172492
172476
  * @remarks
172493
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
172494
- * @beta
172477
+ * [Api set: PowerPointApi 1.9]
172495
172478
  */
172496
172479
  top: number | undefined;
172497
172480
  /**
@@ -173148,32 +173131,28 @@ declare namespace PowerPoint {
173148
173131
  * Gets the collection of borders for the table cell.
173149
173132
  *
173150
173133
  * @remarks
173151
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173152
- * @beta
173134
+ * [Api set: PowerPointApi 1.9]
173153
173135
  */
173154
173136
  readonly borders: PowerPoint.Borders;
173155
173137
  /**
173156
173138
  * Gets the fill color of the table cell.
173157
173139
  *
173158
173140
  * @remarks
173159
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173160
- * @beta
173141
+ * [Api set: PowerPointApi 1.9]
173161
173142
  */
173162
173143
  readonly fill: PowerPoint.ShapeFill;
173163
173144
  /**
173164
173145
  * Gets the font of the table cell.
173165
173146
  *
173166
173147
  * @remarks
173167
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173168
- * @beta
173148
+ * [Api set: PowerPointApi 1.9]
173169
173149
  */
173170
173150
  readonly font: PowerPoint.ShapeFont;
173171
173151
  /**
173172
173152
  * Gets the set of margins in the table cell.
173173
173153
  *
173174
173154
  * @remarks
173175
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173176
- * @beta
173155
+ * [Api set: PowerPointApi 1.9]
173177
173156
  */
173178
173157
  readonly margins: PowerPoint.Margins;
173179
173158
  /**
@@ -173195,16 +173174,14 @@ declare namespace PowerPoint {
173195
173174
  * Specifies the horizontal alignment of the text in the table cell. Returns `null` if the cell text contains different alignments.
173196
173175
  *
173197
173176
  * @remarks
173198
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173199
- * @beta
173177
+ * [Api set: PowerPointApi 1.9]
173200
173178
  */
173201
173179
  horizontalAlignment: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed" | null;
173202
173180
  /**
173203
173181
  * Specifies the indent level of the text in the table cell. Returns `null` if the cell text contains different indent levels.
173204
173182
  *
173205
173183
  * @remarks
173206
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173207
- * @beta
173184
+ * [Api set: PowerPointApi 1.9]
173208
173185
  */
173209
173186
  indentLevel: number | null;
173210
173187
  /**
@@ -173234,16 +173211,14 @@ declare namespace PowerPoint {
173234
173211
  Each `TextRun` object represents a sequence of one or more characters that share the same font attributes.
173235
173212
  *
173236
173213
  * @remarks
173237
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173238
- * @beta
173214
+ * [Api set: PowerPointApi 1.9]
173239
173215
  */
173240
173216
  textRuns: PowerPoint.TextRun[];
173241
173217
  /**
173242
173218
  * Specifies the vertical alignment of the text in the table cell.
173243
173219
  *
173244
173220
  * @remarks
173245
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173246
- * @beta
173221
+ * [Api set: PowerPointApi 1.9]
173247
173222
  */
173248
173223
  verticalAlignment: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
173249
173224
  /**
@@ -173253,8 +173228,7 @@ declare namespace PowerPoint {
173253
173228
  a merged area.
173254
173229
  *
173255
173230
  * @remarks
173256
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173257
- * @beta
173231
+ * [Api set: PowerPointApi 1.9]
173258
173232
  *
173259
173233
  * @param rowCount The number of rows the cell will span across. Must be greater than 0.
173260
173234
  * @param columnCount The number of columns the cell will span across. Must be greater than 0.
@@ -173264,8 +173238,7 @@ declare namespace PowerPoint {
173264
173238
  * Splits the cell into the specified number of rows and columns.
173265
173239
  *
173266
173240
  * @remarks
173267
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173268
- * @beta
173241
+ * [Api set: PowerPointApi 1.9]
173269
173242
  *
173270
173243
  * @param rowCount The number of rows to split into. Must be greater than 0.
173271
173244
  * @param columnCount The number of columns to split into. Must be greater than 0.
@@ -173356,8 +173329,7 @@ declare namespace PowerPoint {
173356
173329
  * Represents a column in a table.
173357
173330
  *
173358
173331
  * @remarks
173359
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173360
- * @beta
173332
+ * [Api set: PowerPointApi 1.9]
173361
173333
  */
173362
173334
  class TableColumn extends OfficeExtension.ClientObject {
173363
173335
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -173366,24 +173338,21 @@ declare namespace PowerPoint {
173366
173338
  * Returns the index number of the column within the column collection of the table. Zero-indexed.
173367
173339
  *
173368
173340
  * @remarks
173369
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173370
- * @beta
173341
+ * [Api set: PowerPointApi 1.9]
173371
173342
  */
173372
173343
  readonly columnIndex: number;
173373
173344
  /**
173374
173345
  * Retrieves the width of the column in points. If the set column width is less than the minimum width, the column width will be increased to the minimum width.
173375
173346
  *
173376
173347
  * @remarks
173377
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173378
- * @beta
173348
+ * [Api set: PowerPointApi 1.9]
173379
173349
  */
173380
173350
  width: number;
173381
173351
  /**
173382
173352
  * Deletes the column.
173383
173353
  *
173384
173354
  * @remarks
173385
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173386
- * @beta
173355
+ * [Api set: PowerPointApi 1.9]
173387
173356
  */
173388
173357
  delete(): void;
173389
173358
  /**
@@ -173635,8 +173604,7 @@ declare namespace PowerPoint {
173635
173604
  * Represents a collection of table columns.
173636
173605
  *
173637
173606
  * @remarks
173638
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173639
- * @beta
173607
+ * [Api set: PowerPointApi 1.9]
173640
173608
  */
173641
173609
  class TableColumnCollection extends OfficeExtension.ClientObject {
173642
173610
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -173647,8 +173615,7 @@ declare namespace PowerPoint {
173647
173615
  * Adds one or more columns to the table.
173648
173616
  *
173649
173617
  * @remarks
173650
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173651
- * @beta
173618
+ * [Api set: PowerPointApi 1.9]
173652
173619
  *
173653
173620
  * @param index Optional. Specifies the zero-based index where the new columns are added. Existing columns starting at the index location are shifted right. If the index value is undefined, null, -1, or greater than the number of columns in the table, the new columns are added at the end of the table.
173654
173621
  * @param count Optional. The number of columns to add. If the value is undefined or 0, only one column is added.
@@ -173659,8 +173626,7 @@ declare namespace PowerPoint {
173659
173626
  * Deletes the specified columns from the collection.
173660
173627
  *
173661
173628
  * @remarks
173662
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173663
- * @beta
173629
+ * [Api set: PowerPointApi 1.9]
173664
173630
  *
173665
173631
  * @param columns An array of `TableColumn` objects representing the columns to be deleted.
173666
173632
  */
@@ -173669,8 +173635,7 @@ declare namespace PowerPoint {
173669
173635
  * Gets the number of columns in the collection.
173670
173636
  *
173671
173637
  * @remarks
173672
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173673
- * @beta
173638
+ * [Api set: PowerPointApi 1.9]
173674
173639
  * @returns The number of columns in the collection.
173675
173640
  */
173676
173641
  getCount(): OfficeExtension.ClientResult<number>;
@@ -173678,8 +173643,7 @@ declare namespace PowerPoint {
173678
173643
  * Gets the column using its zero-based index in the collection.
173679
173644
  *
173680
173645
  * @remarks
173681
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173682
- * @beta
173646
+ * [Api set: PowerPointApi 1.9]
173683
173647
  *
173684
173648
  * @param index Index value of the column to be retrieved, as a zero-based index.
173685
173649
  * @returns The column object.
@@ -173713,32 +173677,28 @@ declare namespace PowerPoint {
173713
173677
  * Represents the available options when clearing a table.
173714
173678
  *
173715
173679
  * @remarks
173716
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173717
- * @beta
173680
+ * [Api set: PowerPointApi 1.9]
173718
173681
  */
173719
173682
  interface TableClearOptions {
173720
173683
  /**
173721
173684
  * Specifies if both values and formatting of the table should be cleared.
173722
173685
  *
173723
173686
  * @remarks
173724
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173725
- * @beta
173687
+ * [Api set: PowerPointApi 1.9]
173726
173688
  */
173727
173689
  all?: boolean;
173728
173690
  /**
173729
173691
  * Specifies if the formatting of the table should be cleared.
173730
173692
  *
173731
173693
  * @remarks
173732
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173733
- * @beta
173694
+ * [Api set: PowerPointApi 1.9]
173734
173695
  */
173735
173696
  format?: boolean;
173736
173697
  /**
173737
173698
  * Specifies if the values of the table should be cleared.
173738
173699
  *
173739
173700
  * @remarks
173740
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173741
- * @beta
173701
+ * [Api set: PowerPointApi 1.9]
173742
173702
  */
173743
173703
  text?: boolean;
173744
173704
  }
@@ -173746,8 +173706,7 @@ declare namespace PowerPoint {
173746
173706
  * Represents a row in a table.
173747
173707
  *
173748
173708
  * @remarks
173749
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173750
- * @beta
173709
+ * [Api set: PowerPointApi 1.9]
173751
173710
  */
173752
173711
  class TableRow extends OfficeExtension.ClientObject {
173753
173712
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -173756,32 +173715,28 @@ declare namespace PowerPoint {
173756
173715
  * Retrieves the current height of the row in points.
173757
173716
  *
173758
173717
  * @remarks
173759
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173760
- * @beta
173718
+ * [Api set: PowerPointApi 1.9]
173761
173719
  */
173762
173720
  readonly currentHeight: number;
173763
173721
  /**
173764
173722
  * Specifies the height of the row in points. If the set row height is less than the minimum height, the row height will be increased to the minimum height.
173765
173723
  *
173766
173724
  * @remarks
173767
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173768
- * @beta
173725
+ * [Api set: PowerPointApi 1.9]
173769
173726
  */
173770
173727
  height: number;
173771
173728
  /**
173772
173729
  * Returns the index number of the row within the rows collection of the table. Zero-indexed.
173773
173730
  *
173774
173731
  * @remarks
173775
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173776
- * @beta
173732
+ * [Api set: PowerPointApi 1.9]
173777
173733
  */
173778
173734
  readonly rowIndex: number;
173779
173735
  /**
173780
173736
  * Deletes the row.
173781
173737
  *
173782
173738
  * @remarks
173783
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173784
- * @beta
173739
+ * [Api set: PowerPointApi 1.9]
173785
173740
  */
173786
173741
  delete(): void;
173787
173742
  /**
@@ -173815,8 +173770,7 @@ declare namespace PowerPoint {
173815
173770
  * Represents a collection of table rows.
173816
173771
  *
173817
173772
  * @remarks
173818
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173819
- * @beta
173773
+ * [Api set: PowerPointApi 1.9]
173820
173774
  */
173821
173775
  class TableRowCollection extends OfficeExtension.ClientObject {
173822
173776
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -173827,8 +173781,7 @@ declare namespace PowerPoint {
173827
173781
  * Adds one or more rows to the table.
173828
173782
  *
173829
173783
  * @remarks
173830
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173831
- * @beta
173784
+ * [Api set: PowerPointApi 1.9]
173832
173785
  *
173833
173786
  * @param index Optional. Specifies the zero-based index where the new rows are added. Existing rows starting at the index location are shifted down. If the index value is undefined, null, -1, or greater than the number of rows in the table, the new rows are added at the end of the table.
173834
173787
  * @param count Optional. The number of rows to add. If the value is undefined or 0, only one row is added.
@@ -173839,8 +173792,7 @@ declare namespace PowerPoint {
173839
173792
  * Deletes the specified rows from the collection.
173840
173793
  *
173841
173794
  * @remarks
173842
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173843
- * @beta
173795
+ * [Api set: PowerPointApi 1.9]
173844
173796
  *
173845
173797
  * @param rows An array of `TableRow` objects representing the rows to be deleted.
173846
173798
  */
@@ -173849,8 +173801,7 @@ declare namespace PowerPoint {
173849
173801
  * Gets the number of rows in the collection.
173850
173802
  *
173851
173803
  * @remarks
173852
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173853
- * @beta
173804
+ * [Api set: PowerPointApi 1.9]
173854
173805
  * @returns The number of rows in the collection.
173855
173806
  */
173856
173807
  getCount(): OfficeExtension.ClientResult<number>;
@@ -173858,8 +173809,7 @@ declare namespace PowerPoint {
173858
173809
  * Gets the row using its zero-based index in the collection.
173859
173810
  *
173860
173811
  * @remarks
173861
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173862
- * @beta
173812
+ * [Api set: PowerPointApi 1.9]
173863
173813
  *
173864
173814
  * @param index Index value of the row to be retrieved, as a zero-based index.
173865
173815
  * @returns The row object.
@@ -173893,526 +173843,451 @@ declare namespace PowerPoint {
173893
173843
  * Represents the available built-in table styles.
173894
173844
  *
173895
173845
  * @remarks
173896
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173897
- * @beta
173846
+ * [Api set: PowerPointApi 1.9]
173898
173847
  */
173899
173848
  enum TableStyle {
173900
173849
  /**
173901
173850
  * Specifies the style "No style, No grid" in UI.
173902
173851
  * @remarks
173903
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173904
- * @beta
173852
+ * [Api set: PowerPointApi 1.9]
173905
173853
  */
173906
173854
  noStyleNoGrid = "NoStyleNoGrid",
173907
173855
  /**
173908
173856
  * Specifies the style "Themed style 1 - Accent 1" in UI.
173909
173857
  * @remarks
173910
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173911
- * @beta
173858
+ * [Api set: PowerPointApi 1.9]
173912
173859
  */
173913
173860
  themedStyle1Accent1 = "ThemedStyle1Accent1",
173914
173861
  /**
173915
173862
  * Specifies the style "Themed style 1 - Accent 2" in UI.
173916
173863
  * @remarks
173917
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173918
- * @beta
173864
+ * [Api set: PowerPointApi 1.9]
173919
173865
  */
173920
173866
  themedStyle1Accent2 = "ThemedStyle1Accent2",
173921
173867
  /**
173922
173868
  * Specifies the style "Themed style 1 - Accent 3" in UI.
173923
173869
  * @remarks
173924
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173925
- * @beta
173870
+ * [Api set: PowerPointApi 1.9]
173926
173871
  */
173927
173872
  themedStyle1Accent3 = "ThemedStyle1Accent3",
173928
173873
  /**
173929
173874
  * Specifies the style "Themed style 1 - Accent 4" in UI.
173930
173875
  * @remarks
173931
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173932
- * @beta
173876
+ * [Api set: PowerPointApi 1.9]
173933
173877
  */
173934
173878
  themedStyle1Accent4 = "ThemedStyle1Accent4",
173935
173879
  /**
173936
173880
  * Specifies the style "Themed style 1 - Accent 5" in UI.
173937
173881
  * @remarks
173938
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173939
- * @beta
173882
+ * [Api set: PowerPointApi 1.9]
173940
173883
  */
173941
173884
  themedStyle1Accent5 = "ThemedStyle1Accent5",
173942
173885
  /**
173943
173886
  * Specifies the style "Themed style 1 - Accent 6" in UI.
173944
173887
  * @remarks
173945
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173946
- * @beta
173888
+ * [Api set: PowerPointApi 1.9]
173947
173889
  */
173948
173890
  themedStyle1Accent6 = "ThemedStyle1Accent6",
173949
173891
  /**
173950
173892
  * Specifies the style "No style, Table grid" in UI.
173951
173893
  * @remarks
173952
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173953
- * @beta
173894
+ * [Api set: PowerPointApi 1.9]
173954
173895
  */
173955
173896
  noStyleTableGrid = "NoStyleTableGrid",
173956
173897
  /**
173957
173898
  * Specifies the style "Themed style 2 - Accent 1" in UI.
173958
173899
  * @remarks
173959
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173960
- * @beta
173900
+ * [Api set: PowerPointApi 1.9]
173961
173901
  */
173962
173902
  themedStyle2Accent1 = "ThemedStyle2Accent1",
173963
173903
  /**
173964
173904
  * Specifies the style "Themed style 2 - Accent 2" in UI.
173965
173905
  * @remarks
173966
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173967
- * @beta
173906
+ * [Api set: PowerPointApi 1.9]
173968
173907
  */
173969
173908
  themedStyle2Accent2 = "ThemedStyle2Accent2",
173970
173909
  /**
173971
173910
  * Specifies the style "Themed style 2 - Accent 3" in UI.
173972
173911
  * @remarks
173973
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173974
- * @beta
173912
+ * [Api set: PowerPointApi 1.9]
173975
173913
  */
173976
173914
  themedStyle2Accent3 = "ThemedStyle2Accent3",
173977
173915
  /**
173978
173916
  * Specifies the style "Themed style 2 - Accent 4" in UI.
173979
173917
  * @remarks
173980
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173981
- * @beta
173918
+ * [Api set: PowerPointApi 1.9]
173982
173919
  */
173983
173920
  themedStyle2Accent4 = "ThemedStyle2Accent4",
173984
173921
  /**
173985
173922
  * Specifies the style "Themed style 2 - Accent 5" in UI.
173986
173923
  * @remarks
173987
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173988
- * @beta
173924
+ * [Api set: PowerPointApi 1.9]
173989
173925
  */
173990
173926
  themedStyle2Accent5 = "ThemedStyle2Accent5",
173991
173927
  /**
173992
173928
  * Specifies the style "Themed style 2 - Accent 6" in UI.
173993
173929
  * @remarks
173994
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
173995
- * @beta
173930
+ * [Api set: PowerPointApi 1.9]
173996
173931
  */
173997
173932
  themedStyle2Accent6 = "ThemedStyle2Accent6",
173998
173933
  /**
173999
173934
  * Specifies the style "Light Style 1" in UI.
174000
173935
  * @remarks
174001
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174002
- * @beta
173936
+ * [Api set: PowerPointApi 1.9]
174003
173937
  */
174004
173938
  lightStyle1 = "LightStyle1",
174005
173939
  /**
174006
173940
  * Specifies the style "Light style 1 - Accent 1" in UI.
174007
173941
  * @remarks
174008
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174009
- * @beta
173942
+ * [Api set: PowerPointApi 1.9]
174010
173943
  */
174011
173944
  lightStyle1Accent1 = "LightStyle1Accent1",
174012
173945
  /**
174013
173946
  * Specifies the style "Light style 1 - Accent 2" in UI.
174014
173947
  * @remarks
174015
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174016
- * @beta
173948
+ * [Api set: PowerPointApi 1.9]
174017
173949
  */
174018
173950
  lightStyle1Accent2 = "LightStyle1Accent2",
174019
173951
  /**
174020
173952
  * Specifies the style "Light style 1 - Accent 3" in UI.
174021
173953
  * @remarks
174022
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174023
- * @beta
173954
+ * [Api set: PowerPointApi 1.9]
174024
173955
  */
174025
173956
  lightStyle1Accent3 = "LightStyle1Accent3",
174026
173957
  /**
174027
173958
  * Specifies the style "Light style 1 - Accent 4" in UI.
174028
173959
  * @remarks
174029
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174030
- * @beta
173960
+ * [Api set: PowerPointApi 1.9]
174031
173961
  */
174032
173962
  lightStyle1Accent4 = "LightStyle1Accent4",
174033
173963
  /**
174034
173964
  * Specifies the style "Light style 1 - Accent 5" in UI.
174035
173965
  * @remarks
174036
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174037
- * @beta
173966
+ * [Api set: PowerPointApi 1.9]
174038
173967
  */
174039
173968
  lightStyle1Accent5 = "LightStyle1Accent5",
174040
173969
  /**
174041
173970
  * Specifies the style "Light style 1 - Accent 6" in UI.
174042
173971
  * @remarks
174043
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174044
- * @beta
173972
+ * [Api set: PowerPointApi 1.9]
174045
173973
  */
174046
173974
  lightStyle1Accent6 = "LightStyle1Accent6",
174047
173975
  /**
174048
173976
  * Specifies the style "Light Style 2" in UI.
174049
173977
  * @remarks
174050
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174051
- * @beta
173978
+ * [Api set: PowerPointApi 1.9]
174052
173979
  */
174053
173980
  lightStyle2 = "LightStyle2",
174054
173981
  /**
174055
173982
  * Specifies the style "Light style 2 - Accent 1" in UI.
174056
173983
  * @remarks
174057
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174058
- * @beta
173984
+ * [Api set: PowerPointApi 1.9]
174059
173985
  */
174060
173986
  lightStyle2Accent1 = "LightStyle2Accent1",
174061
173987
  /**
174062
173988
  * Specifies the style "Light style 2 - Accent 2" in UI.
174063
173989
  * @remarks
174064
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174065
- * @beta
173990
+ * [Api set: PowerPointApi 1.9]
174066
173991
  */
174067
173992
  lightStyle2Accent2 = "LightStyle2Accent2",
174068
173993
  /**
174069
173994
  * Specifies the style "Light style 2 - Accent 3" in UI.
174070
173995
  * @remarks
174071
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174072
- * @beta
173996
+ * [Api set: PowerPointApi 1.9]
174073
173997
  */
174074
173998
  lightStyle2Accent3 = "LightStyle2Accent3",
174075
173999
  /**
174076
174000
  * Specifies the style "Light style 2 - Accent 4" in UI.
174077
174001
  * @remarks
174078
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174079
- * @beta
174002
+ * [Api set: PowerPointApi 1.9]
174080
174003
  */
174081
174004
  lightStyle2Accent4 = "LightStyle2Accent4",
174082
174005
  /**
174083
174006
  * Specifies the style "Light style 2 - Accent 5" in UI.
174084
174007
  * @remarks
174085
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174086
- * @beta
174008
+ * [Api set: PowerPointApi 1.9]
174087
174009
  */
174088
174010
  lightStyle2Accent5 = "LightStyle2Accent5",
174089
174011
  /**
174090
174012
  * Specifies the style "Light style 2 - Accent 6" in UI.
174091
174013
  * @remarks
174092
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174093
- * @beta
174014
+ * [Api set: PowerPointApi 1.9]
174094
174015
  */
174095
174016
  lightStyle2Accent6 = "LightStyle2Accent6",
174096
174017
  /**
174097
174018
  * Specifies the style "Light Style 3" in UI.
174098
174019
  * @remarks
174099
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174100
- * @beta
174020
+ * [Api set: PowerPointApi 1.9]
174101
174021
  */
174102
174022
  lightStyle3 = "LightStyle3",
174103
174023
  /**
174104
174024
  * Specifies the style "Light style 3 - Accent 1" in UI.
174105
174025
  * @remarks
174106
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174107
- * @beta
174026
+ * [Api set: PowerPointApi 1.9]
174108
174027
  */
174109
174028
  lightStyle3Accent1 = "LightStyle3Accent1",
174110
174029
  /**
174111
174030
  * Specifies the style "Light style 3 - Accent 2" in UI.
174112
174031
  * @remarks
174113
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174114
- * @beta
174032
+ * [Api set: PowerPointApi 1.9]
174115
174033
  */
174116
174034
  lightStyle3Accent2 = "LightStyle3Accent2",
174117
174035
  /**
174118
174036
  * Specifies the style "Light style 3 - Accent 3" in UI.
174119
174037
  * @remarks
174120
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174121
- * @beta
174038
+ * [Api set: PowerPointApi 1.9]
174122
174039
  */
174123
174040
  lightStyle3Accent3 = "LightStyle3Accent3",
174124
174041
  /**
174125
174042
  * Specifies the style "Light style 3 - Accent 4" in UI.
174126
174043
  * @remarks
174127
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174128
- * @beta
174044
+ * [Api set: PowerPointApi 1.9]
174129
174045
  */
174130
174046
  lightStyle3Accent4 = "LightStyle3Accent4",
174131
174047
  /**
174132
174048
  * Specifies the style "Light style 3 - Accent 5" in UI.
174133
174049
  * @remarks
174134
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174135
- * @beta
174050
+ * [Api set: PowerPointApi 1.9]
174136
174051
  */
174137
174052
  lightStyle3Accent5 = "LightStyle3Accent5",
174138
174053
  /**
174139
174054
  * Specifies the style "Light style 3 - Accent 6" in UI.
174140
174055
  * @remarks
174141
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174142
- * @beta
174056
+ * [Api set: PowerPointApi 1.9]
174143
174057
  */
174144
174058
  lightStyle3Accent6 = "LightStyle3Accent6",
174145
174059
  /**
174146
174060
  * Specifies the style "Medium Style 1" in UI.
174147
174061
  * @remarks
174148
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174149
- * @beta
174062
+ * [Api set: PowerPointApi 1.9]
174150
174063
  */
174151
174064
  mediumStyle1 = "MediumStyle1",
174152
174065
  /**
174153
174066
  * Specifies the style "Medium style 1 - Accent 1" in UI.
174154
174067
  * @remarks
174155
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174156
- * @beta
174068
+ * [Api set: PowerPointApi 1.9]
174157
174069
  */
174158
174070
  mediumStyle1Accent1 = "MediumStyle1Accent1",
174159
174071
  /**
174160
174072
  * Specifies the style "Medium style 1 - Accent 2" in UI.
174161
174073
  * @remarks
174162
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174163
- * @beta
174074
+ * [Api set: PowerPointApi 1.9]
174164
174075
  */
174165
174076
  mediumStyle1Accent2 = "MediumStyle1Accent2",
174166
174077
  /**
174167
174078
  * Specifies the style "Medium style 1 - Accent 3" in UI.
174168
174079
  * @remarks
174169
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174170
- * @beta
174080
+ * [Api set: PowerPointApi 1.9]
174171
174081
  */
174172
174082
  mediumStyle1Accent3 = "MediumStyle1Accent3",
174173
174083
  /**
174174
174084
  * Specifies the style "Medium style 1 - Accent 4" in UI.
174175
174085
  * @remarks
174176
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174177
- * @beta
174086
+ * [Api set: PowerPointApi 1.9]
174178
174087
  */
174179
174088
  mediumStyle1Accent4 = "MediumStyle1Accent4",
174180
174089
  /**
174181
174090
  * Specifies the style "Medium style 1 - Accent 5" in UI.
174182
174091
  * @remarks
174183
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174184
- * @beta
174092
+ * [Api set: PowerPointApi 1.9]
174185
174093
  */
174186
174094
  mediumStyle1Accent5 = "MediumStyle1Accent5",
174187
174095
  /**
174188
174096
  * Specifies the style "Medium style 1 - Accent 6" in UI.
174189
174097
  * @remarks
174190
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174191
- * @beta
174098
+ * [Api set: PowerPointApi 1.9]
174192
174099
  */
174193
174100
  mediumStyle1Accent6 = "MediumStyle1Accent6",
174194
174101
  /**
174195
174102
  * Specifies the style "Medium Style 2" in UI.
174196
174103
  * @remarks
174197
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174198
- * @beta
174104
+ * [Api set: PowerPointApi 1.9]
174199
174105
  */
174200
174106
  mediumStyle2 = "MediumStyle2",
174201
174107
  /**
174202
174108
  * Specifies the style "Medium style 2 - Accent 1" in UI.
174203
174109
  * @remarks
174204
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174205
- * @beta
174110
+ * [Api set: PowerPointApi 1.9]
174206
174111
  */
174207
174112
  mediumStyle2Accent1 = "MediumStyle2Accent1",
174208
174113
  /**
174209
174114
  * Specifies the style "Medium style 2 - Accent 2" in UI.
174210
174115
  * @remarks
174211
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174212
- * @beta
174116
+ * [Api set: PowerPointApi 1.9]
174213
174117
  */
174214
174118
  mediumStyle2Accent2 = "MediumStyle2Accent2",
174215
174119
  /**
174216
174120
  * Specifies the style "Medium style 2 - Accent 3" in UI.
174217
174121
  * @remarks
174218
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174219
- * @beta
174122
+ * [Api set: PowerPointApi 1.9]
174220
174123
  */
174221
174124
  mediumStyle2Accent3 = "MediumStyle2Accent3",
174222
174125
  /**
174223
174126
  * Specifies the style "Medium style 2 - Accent 4" in UI.
174224
174127
  * @remarks
174225
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174226
- * @beta
174128
+ * [Api set: PowerPointApi 1.9]
174227
174129
  */
174228
174130
  mediumStyle2Accent4 = "MediumStyle2Accent4",
174229
174131
  /**
174230
174132
  * Specifies the style "Medium style 2 - Accent 5" in UI.
174231
174133
  * @remarks
174232
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174233
- * @beta
174134
+ * [Api set: PowerPointApi 1.9]
174234
174135
  */
174235
174136
  mediumStyle2Accent5 = "MediumStyle2Accent5",
174236
174137
  /**
174237
174138
  * Specifies the style "Medium style 2 - Accent 6" in UI.
174238
174139
  * @remarks
174239
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174240
- * @beta
174140
+ * [Api set: PowerPointApi 1.9]
174241
174141
  */
174242
174142
  mediumStyle2Accent6 = "MediumStyle2Accent6",
174243
174143
  /**
174244
174144
  * Specifies the style "Medium Style 3" in UI.
174245
174145
  * @remarks
174246
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174247
- * @beta
174146
+ * [Api set: PowerPointApi 1.9]
174248
174147
  */
174249
174148
  mediumStyle3 = "MediumStyle3",
174250
174149
  /**
174251
174150
  * Specifies the style "Medium style 3 - Accent 1" in UI.
174252
174151
  * @remarks
174253
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174254
- * @beta
174152
+ * [Api set: PowerPointApi 1.9]
174255
174153
  */
174256
174154
  mediumStyle3Accent1 = "MediumStyle3Accent1",
174257
174155
  /**
174258
174156
  * Specifies the style "Medium style 3 - Accent 2" in UI.
174259
174157
  * @remarks
174260
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174261
- * @beta
174158
+ * [Api set: PowerPointApi 1.9]
174262
174159
  */
174263
174160
  mediumStyle3Accent2 = "MediumStyle3Accent2",
174264
174161
  /**
174265
174162
  * Specifies the style "Medium style 3 - Accent 3" in UI.
174266
174163
  * @remarks
174267
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174268
- * @beta
174164
+ * [Api set: PowerPointApi 1.9]
174269
174165
  */
174270
174166
  mediumStyle3Accent3 = "MediumStyle3Accent3",
174271
174167
  /**
174272
174168
  * Specifies the style "Medium style 3 - Accent 4" in UI.
174273
174169
  * @remarks
174274
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174275
- * @beta
174170
+ * [Api set: PowerPointApi 1.9]
174276
174171
  */
174277
174172
  mediumStyle3Accent4 = "MediumStyle3Accent4",
174278
174173
  /**
174279
174174
  * Specifies the style "Medium style 3 - Accent 5" in UI.
174280
174175
  * @remarks
174281
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174282
- * @beta
174176
+ * [Api set: PowerPointApi 1.9]
174283
174177
  */
174284
174178
  mediumStyle3Accent5 = "MediumStyle3Accent5",
174285
174179
  /**
174286
174180
  * Specifies the style "Medium style 3 - Accent 6" in UI.
174287
174181
  * @remarks
174288
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174289
- * @beta
174182
+ * [Api set: PowerPointApi 1.9]
174290
174183
  */
174291
174184
  mediumStyle3Accent6 = "MediumStyle3Accent6",
174292
174185
  /**
174293
174186
  * Specifies the style "Medium Style 4" in UI.
174294
174187
  * @remarks
174295
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174296
- * @beta
174188
+ * [Api set: PowerPointApi 1.9]
174297
174189
  */
174298
174190
  mediumStyle4 = "MediumStyle4",
174299
174191
  /**
174300
174192
  * Specifies the style "Medium style 4 - Accent 1" in UI.
174301
174193
  * @remarks
174302
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174303
- * @beta
174194
+ * [Api set: PowerPointApi 1.9]
174304
174195
  */
174305
174196
  mediumStyle4Accent1 = "MediumStyle4Accent1",
174306
174197
  /**
174307
174198
  * Specifies the style "Medium style 4 - Accent 2" in UI.
174308
174199
  * @remarks
174309
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174310
- * @beta
174200
+ * [Api set: PowerPointApi 1.9]
174311
174201
  */
174312
174202
  mediumStyle4Accent2 = "MediumStyle4Accent2",
174313
174203
  /**
174314
174204
  * Specifies the style "Medium style 4 - Accent 3" in UI.
174315
174205
  * @remarks
174316
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174317
- * @beta
174206
+ * [Api set: PowerPointApi 1.9]
174318
174207
  */
174319
174208
  mediumStyle4Accent3 = "MediumStyle4Accent3",
174320
174209
  /**
174321
174210
  * Specifies the style "Medium style 4 - Accent 4" in UI.
174322
174211
  * @remarks
174323
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174324
- * @beta
174212
+ * [Api set: PowerPointApi 1.9]
174325
174213
  */
174326
174214
  mediumStyle4Accent4 = "MediumStyle4Accent4",
174327
174215
  /**
174328
174216
  * Specifies the style "Medium style 4 - Accent 5" in UI.
174329
174217
  * @remarks
174330
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174331
- * @beta
174218
+ * [Api set: PowerPointApi 1.9]
174332
174219
  */
174333
174220
  mediumStyle4Accent5 = "MediumStyle4Accent5",
174334
174221
  /**
174335
174222
  * Specifies the style "Medium style 4 - Accent 6" in UI.
174336
174223
  * @remarks
174337
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174338
- * @beta
174224
+ * [Api set: PowerPointApi 1.9]
174339
174225
  */
174340
174226
  mediumStyle4Accent6 = "MediumStyle4Accent6",
174341
174227
  /**
174342
174228
  * Specifies the style "Dark Style 1" in UI.
174343
174229
  * @remarks
174344
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174345
- * @beta
174230
+ * [Api set: PowerPointApi 1.9]
174346
174231
  */
174347
174232
  darkStyle1 = "DarkStyle1",
174348
174233
  /**
174349
174234
  * Specifies the style "Dark style 1 - Accent 1" in UI.
174350
174235
  * @remarks
174351
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174352
- * @beta
174236
+ * [Api set: PowerPointApi 1.9]
174353
174237
  */
174354
174238
  darkStyle1Accent1 = "DarkStyle1Accent1",
174355
174239
  /**
174356
174240
  * Specifies the style "Dark style 1 - Accent 2" in UI.
174357
174241
  * @remarks
174358
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174359
- * @beta
174242
+ * [Api set: PowerPointApi 1.9]
174360
174243
  */
174361
174244
  darkStyle1Accent2 = "DarkStyle1Accent2",
174362
174245
  /**
174363
174246
  * Specifies the style "Dark style 1 - Accent 3" in UI.
174364
174247
  * @remarks
174365
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174366
- * @beta
174248
+ * [Api set: PowerPointApi 1.9]
174367
174249
  */
174368
174250
  darkStyle1Accent3 = "DarkStyle1Accent3",
174369
174251
  /**
174370
174252
  * Specifies the style "Dark style 1 - Accent 4" in UI.
174371
174253
  * @remarks
174372
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174373
- * @beta
174254
+ * [Api set: PowerPointApi 1.9]
174374
174255
  */
174375
174256
  darkStyle1Accent4 = "DarkStyle1Accent4",
174376
174257
  /**
174377
174258
  * Specifies the style "Dark style 1 - Accent 5" in UI.
174378
174259
  * @remarks
174379
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174380
- * @beta
174260
+ * [Api set: PowerPointApi 1.9]
174381
174261
  */
174382
174262
  darkStyle1Accent5 = "DarkStyle1Accent5",
174383
174263
  /**
174384
174264
  * Specifies the style "Dark style 1 - Accent 6" in UI.
174385
174265
  * @remarks
174386
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174387
- * @beta
174266
+ * [Api set: PowerPointApi 1.9]
174388
174267
  */
174389
174268
  darkStyle1Accent6 = "DarkStyle1Accent6",
174390
174269
  /**
174391
174270
  * Specifies the style "Dark Style 2" in UI.
174392
174271
  * @remarks
174393
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174394
- * @beta
174272
+ * [Api set: PowerPointApi 1.9]
174395
174273
  */
174396
174274
  darkStyle2 = "DarkStyle2",
174397
174275
  /**
174398
174276
  * Specifies the style "Dark style 2 - Accent 1/Accent 2" in UI.
174399
174277
  * @remarks
174400
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174401
- * @beta
174278
+ * [Api set: PowerPointApi 1.9]
174402
174279
  */
174403
174280
  darkStyle2Accent1 = "DarkStyle2Accent1",
174404
174281
  /**
174405
174282
  * Specifies the style "Dark style 2 - Accent 3/Accent 4" in UI.
174406
174283
  * @remarks
174407
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174408
- * @beta
174284
+ * [Api set: PowerPointApi 1.9]
174409
174285
  */
174410
174286
  darkStyle2Accent2 = "DarkStyle2Accent2",
174411
174287
  /**
174412
174288
  * Specifies the style "Dark style 2 - Accent 5/Accent 6" in UI.
174413
174289
  * @remarks
174414
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174415
- * @beta
174290
+ * [Api set: PowerPointApi 1.9]
174416
174291
  */
174417
174292
  darkStyle2Accent3 = "DarkStyle2Accent3",
174418
174293
  }
@@ -174522,16 +174397,14 @@ declare namespace PowerPoint {
174522
174397
  * Gets the collection of columns in the table.
174523
174398
  *
174524
174399
  * @remarks
174525
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174526
- * @beta
174400
+ * [Api set: PowerPointApi 1.9]
174527
174401
  */
174528
174402
  readonly columns: PowerPoint.TableColumnCollection;
174529
174403
  /**
174530
174404
  * Gets the collection of rows in the table.
174531
174405
  *
174532
174406
  * @remarks
174533
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174534
- * @beta
174407
+ * [Api set: PowerPointApi 1.9]
174535
174408
  */
174536
174409
  readonly rows: PowerPoint.TableRowCollection;
174537
174410
  /**
@@ -174567,8 +174440,7 @@ declare namespace PowerPoint {
174567
174440
  * Clears table values and formatting.
174568
174441
  *
174569
174442
  * @remarks
174570
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174571
- * @beta
174443
+ * [Api set: PowerPointApi 1.9]
174572
174444
  *
174573
174445
  * @param options Provides options for clearing the table.
174574
174446
  */
@@ -174603,8 +174475,7 @@ declare namespace PowerPoint {
174603
174475
  * Creates a merged area starting at the cell specified by rowIndex and columnIndex. The merged area spans across a specified number of rows and columns.
174604
174476
  *
174605
174477
  * @remarks
174606
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174607
- * @beta
174478
+ * [Api set: PowerPointApi 1.9]
174608
174479
  *
174609
174480
  * @param rowIndex The zero-based row index of the cell to start the merged area.
174610
174481
  * @param columnIndex The zero-based column index of the cell to start the merged area.
@@ -174782,8 +174653,7 @@ declare namespace PowerPoint {
174782
174653
  * Specifies value that represents the table style.
174783
174654
  *
174784
174655
  * @remarks
174785
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
174786
- * @beta
174656
+ * [Api set: PowerPointApi 1.9]
174787
174657
  */
174788
174658
  style?: PowerPoint.TableStyle | "NoStyleNoGrid" | "ThemedStyle1Accent1" | "ThemedStyle1Accent2" | "ThemedStyle1Accent3" | "ThemedStyle1Accent4" | "ThemedStyle1Accent5" | "ThemedStyle1Accent6" | "NoStyleTableGrid" | "ThemedStyle2Accent1" | "ThemedStyle2Accent2" | "ThemedStyle2Accent3" | "ThemedStyle2Accent4" | "ThemedStyle2Accent5" | "ThemedStyle2Accent6" | "LightStyle1" | "LightStyle1Accent1" | "LightStyle1Accent2" | "LightStyle1Accent3" | "LightStyle1Accent4" | "LightStyle1Accent5" | "LightStyle1Accent6" | "LightStyle2" | "LightStyle2Accent1" | "LightStyle2Accent2" | "LightStyle2Accent3" | "LightStyle2Accent4" | "LightStyle2Accent5" | "LightStyle2Accent6" | "LightStyle3" | "LightStyle3Accent1" | "LightStyle3Accent2" | "LightStyle3Accent3" | "LightStyle3Accent4" | "LightStyle3Accent5" | "LightStyle3Accent6" | "MediumStyle1" | "MediumStyle1Accent1" | "MediumStyle1Accent2" | "MediumStyle1Accent3" | "MediumStyle1Accent4" | "MediumStyle1Accent5" | "MediumStyle1Accent6" | "MediumStyle2" | "MediumStyle2Accent1" | "MediumStyle2Accent2" | "MediumStyle2Accent3" | "MediumStyle2Accent4" | "MediumStyle2Accent5" | "MediumStyle2Accent6" | "MediumStyle3" | "MediumStyle3Accent1" | "MediumStyle3Accent2" | "MediumStyle3Accent3" | "MediumStyle3Accent4" | "MediumStyle3Accent5" | "MediumStyle3Accent6" | "MediumStyle4" | "MediumStyle4Accent1" | "MediumStyle4Accent2" | "MediumStyle4Accent3" | "MediumStyle4Accent4" | "MediumStyle4Accent5" | "MediumStyle4Accent6" | "DarkStyle1" | "DarkStyle1Accent1" | "DarkStyle1Accent2" | "DarkStyle1Accent3" | "DarkStyle1Accent4" | "DarkStyle1Accent5" | "DarkStyle1Accent6" | "DarkStyle2" | "DarkStyle2Accent1" | "DarkStyle2Accent2" | "DarkStyle2Accent3";
174789
174659
  /**
@@ -179281,32 +179151,28 @@ declare namespace PowerPoint {
179281
179151
  * Represents the line color in the hexadecimal format #RRGGBB (e.g., "FFA500") or as a named HTML color value (e.g., "orange").
179282
179152
  *
179283
179153
  * @remarks
179284
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179285
- * @beta
179154
+ * [Api set: PowerPointApi 1.9]
179286
179155
  */
179287
179156
  color?: string | undefined;
179288
179157
  /**
179289
179158
  * Represents the dash style of the line.
179290
179159
  *
179291
179160
  * @remarks
179292
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179293
- * @beta
179161
+ * [Api set: PowerPointApi 1.9]
179294
179162
  */
179295
179163
  dashStyle?: PowerPoint.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot" | undefined;
179296
179164
  /**
179297
179165
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear).
179298
179166
  *
179299
179167
  * @remarks
179300
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179301
- * @beta
179168
+ * [Api set: PowerPointApi 1.9]
179302
179169
  */
179303
179170
  transparency?: number | undefined;
179304
179171
  /**
179305
179172
  * Represents the weight of the line, in points.
179306
179173
  *
179307
179174
  * @remarks
179308
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179309
- * @beta
179175
+ * [Api set: PowerPointApi 1.9]
179310
179176
  */
179311
179177
  weight?: number | undefined;
179312
179178
  }
@@ -179316,32 +179182,28 @@ declare namespace PowerPoint {
179316
179182
  * Specifies the bottom margin in points.
179317
179183
  *
179318
179184
  * @remarks
179319
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179320
- * @beta
179185
+ * [Api set: PowerPointApi 1.9]
179321
179186
  */
179322
179187
  bottom?: number | undefined;
179323
179188
  /**
179324
179189
  * Specifies the left margin in points.
179325
179190
  *
179326
179191
  * @remarks
179327
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179328
- * @beta
179192
+ * [Api set: PowerPointApi 1.9]
179329
179193
  */
179330
179194
  left?: number | undefined;
179331
179195
  /**
179332
179196
  * Specifies the right margin in points.
179333
179197
  *
179334
179198
  * @remarks
179335
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179336
- * @beta
179199
+ * [Api set: PowerPointApi 1.9]
179337
179200
  */
179338
179201
  right?: number | undefined;
179339
179202
  /**
179340
179203
  * Specifies the top margin in points.
179341
179204
  *
179342
179205
  * @remarks
179343
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179344
- * @beta
179206
+ * [Api set: PowerPointApi 1.9]
179345
179207
  */
179346
179208
  top?: number | undefined;
179347
179209
  }
@@ -179503,16 +179365,14 @@ declare namespace PowerPoint {
179503
179365
  * Specifies the horizontal alignment of the text in the table cell. Returns `null` if the cell text contains different alignments.
179504
179366
  *
179505
179367
  * @remarks
179506
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179507
- * @beta
179368
+ * [Api set: PowerPointApi 1.9]
179508
179369
  */
179509
179370
  horizontalAlignment?: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed" | null;
179510
179371
  /**
179511
179372
  * Specifies the indent level of the text in the table cell. Returns `null` if the cell text contains different indent levels.
179512
179373
  *
179513
179374
  * @remarks
179514
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179515
- * @beta
179375
+ * [Api set: PowerPointApi 1.9]
179516
179376
  */
179517
179377
  indentLevel?: number | null;
179518
179378
  /**
@@ -179527,16 +179387,14 @@ declare namespace PowerPoint {
179527
179387
  Each `TextRun` object represents a sequence of one or more characters that share the same font attributes.
179528
179388
  *
179529
179389
  * @remarks
179530
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179531
- * @beta
179390
+ * [Api set: PowerPointApi 1.9]
179532
179391
  */
179533
179392
  textRuns?: PowerPoint.TextRun[];
179534
179393
  /**
179535
179394
  * Specifies the vertical alignment of the text in the table cell.
179536
179395
  *
179537
179396
  * @remarks
179538
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179539
- * @beta
179397
+ * [Api set: PowerPointApi 1.9]
179540
179398
  */
179541
179399
  verticalAlignment?: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
179542
179400
  }
@@ -179550,8 +179408,7 @@ declare namespace PowerPoint {
179550
179408
  * Retrieves the width of the column in points. If the set column width is less than the minimum width, the column width will be increased to the minimum width.
179551
179409
  *
179552
179410
  * @remarks
179553
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179554
- * @beta
179411
+ * [Api set: PowerPointApi 1.9]
179555
179412
  */
179556
179413
  width?: number;
179557
179414
  }
@@ -179565,8 +179422,7 @@ declare namespace PowerPoint {
179565
179422
  * Specifies the height of the row in points. If the set row height is less than the minimum height, the row height will be increased to the minimum height.
179566
179423
  *
179567
179424
  * @remarks
179568
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
179569
- * @beta
179425
+ * [Api set: PowerPointApi 1.9]
179570
179426
  */
179571
179427
  height?: number;
179572
179428
  }
@@ -180186,32 +180042,28 @@ declare namespace PowerPoint {
180186
180042
  * Represents the line color in the hexadecimal format #RRGGBB (e.g., "FFA500") or as a named HTML color value (e.g., "orange").
180187
180043
  *
180188
180044
  * @remarks
180189
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180190
- * @beta
180045
+ * [Api set: PowerPointApi 1.9]
180191
180046
  */
180192
180047
  color?: string | undefined;
180193
180048
  /**
180194
180049
  * Represents the dash style of the line.
180195
180050
  *
180196
180051
  * @remarks
180197
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180198
- * @beta
180052
+ * [Api set: PowerPointApi 1.9]
180199
180053
  */
180200
180054
  dashStyle?: PowerPoint.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot" | undefined;
180201
180055
  /**
180202
180056
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear).
180203
180057
  *
180204
180058
  * @remarks
180205
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180206
- * @beta
180059
+ * [Api set: PowerPointApi 1.9]
180207
180060
  */
180208
180061
  transparency?: number | undefined;
180209
180062
  /**
180210
180063
  * Represents the weight of the line, in points.
180211
180064
  *
180212
180065
  * @remarks
180213
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180214
- * @beta
180066
+ * [Api set: PowerPointApi 1.9]
180215
180067
  */
180216
180068
  weight?: number | undefined;
180217
180069
  }
@@ -180224,32 +180076,28 @@ declare namespace PowerPoint {
180224
180076
  * Specifies the bottom margin in points.
180225
180077
  *
180226
180078
  * @remarks
180227
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180228
- * @beta
180079
+ * [Api set: PowerPointApi 1.9]
180229
180080
  */
180230
180081
  bottom?: number | undefined;
180231
180082
  /**
180232
180083
  * Specifies the left margin in points.
180233
180084
  *
180234
180085
  * @remarks
180235
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180236
- * @beta
180086
+ * [Api set: PowerPointApi 1.9]
180237
180087
  */
180238
180088
  left?: number | undefined;
180239
180089
  /**
180240
180090
  * Specifies the right margin in points.
180241
180091
  *
180242
180092
  * @remarks
180243
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180244
- * @beta
180093
+ * [Api set: PowerPointApi 1.9]
180245
180094
  */
180246
180095
  right?: number | undefined;
180247
180096
  /**
180248
180097
  * Specifies the top margin in points.
180249
180098
  *
180250
180099
  * @remarks
180251
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180252
- * @beta
180100
+ * [Api set: PowerPointApi 1.9]
180253
180101
  */
180254
180102
  top?: number | undefined;
180255
180103
  }
@@ -180433,16 +180281,14 @@ declare namespace PowerPoint {
180433
180281
  * Specifies the horizontal alignment of the text in the table cell. Returns `null` if the cell text contains different alignments.
180434
180282
  *
180435
180283
  * @remarks
180436
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180437
- * @beta
180284
+ * [Api set: PowerPointApi 1.9]
180438
180285
  */
180439
180286
  horizontalAlignment?: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed" | null;
180440
180287
  /**
180441
180288
  * Specifies the indent level of the text in the table cell. Returns `null` if the cell text contains different indent levels.
180442
180289
  *
180443
180290
  * @remarks
180444
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180445
- * @beta
180291
+ * [Api set: PowerPointApi 1.9]
180446
180292
  */
180447
180293
  indentLevel?: number | null;
180448
180294
  /**
@@ -180472,16 +180318,14 @@ declare namespace PowerPoint {
180472
180318
  Each `TextRun` object represents a sequence of one or more characters that share the same font attributes.
180473
180319
  *
180474
180320
  * @remarks
180475
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180476
- * @beta
180321
+ * [Api set: PowerPointApi 1.9]
180477
180322
  */
180478
180323
  textRuns?: PowerPoint.TextRun[];
180479
180324
  /**
180480
180325
  * Specifies the vertical alignment of the text in the table cell.
180481
180326
  *
180482
180327
  * @remarks
180483
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180484
- * @beta
180328
+ * [Api set: PowerPointApi 1.9]
180485
180329
  */
180486
180330
  verticalAlignment?: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
180487
180331
  }
@@ -180495,16 +180339,14 @@ declare namespace PowerPoint {
180495
180339
  * Returns the index number of the column within the column collection of the table. Zero-indexed.
180496
180340
  *
180497
180341
  * @remarks
180498
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180499
- * @beta
180342
+ * [Api set: PowerPointApi 1.9]
180500
180343
  */
180501
180344
  columnIndex?: number;
180502
180345
  /**
180503
180346
  * Retrieves the width of the column in points. If the set column width is less than the minimum width, the column width will be increased to the minimum width.
180504
180347
  *
180505
180348
  * @remarks
180506
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180507
- * @beta
180349
+ * [Api set: PowerPointApi 1.9]
180508
180350
  */
180509
180351
  width?: number;
180510
180352
  }
@@ -180518,24 +180360,21 @@ declare namespace PowerPoint {
180518
180360
  * Retrieves the current height of the row in points.
180519
180361
  *
180520
180362
  * @remarks
180521
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180522
- * @beta
180363
+ * [Api set: PowerPointApi 1.9]
180523
180364
  */
180524
180365
  currentHeight?: number;
180525
180366
  /**
180526
180367
  * Specifies the height of the row in points. If the set row height is less than the minimum height, the row height will be increased to the minimum height.
180527
180368
  *
180528
180369
  * @remarks
180529
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180530
- * @beta
180370
+ * [Api set: PowerPointApi 1.9]
180531
180371
  */
180532
180372
  height?: number;
180533
180373
  /**
180534
180374
  * Returns the index number of the row within the rows collection of the table. Zero-indexed.
180535
180375
  *
180536
180376
  * @remarks
180537
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
180538
- * @beta
180377
+ * [Api set: PowerPointApi 1.9]
180539
180378
  */
180540
180379
  rowIndex?: number;
180541
180380
  }
@@ -181470,8 +181309,7 @@ declare namespace PowerPoint {
181470
181309
  * Represents the properties for a table cell border.
181471
181310
  *
181472
181311
  * @remarks
181473
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181474
- * @beta
181312
+ * [Api set: PowerPointApi 1.9]
181475
181313
  */
181476
181314
  interface BorderLoadOptions {
181477
181315
  /**
@@ -181482,32 +181320,28 @@ declare namespace PowerPoint {
181482
181320
  * Represents the line color in the hexadecimal format #RRGGBB (e.g., "FFA500") or as a named HTML color value (e.g., "orange").
181483
181321
  *
181484
181322
  * @remarks
181485
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181486
- * @beta
181323
+ * [Api set: PowerPointApi 1.9]
181487
181324
  */
181488
181325
  color?: boolean;
181489
181326
  /**
181490
181327
  * Represents the dash style of the line.
181491
181328
  *
181492
181329
  * @remarks
181493
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181494
- * @beta
181330
+ * [Api set: PowerPointApi 1.9]
181495
181331
  */
181496
181332
  dashStyle?: boolean;
181497
181333
  /**
181498
181334
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear).
181499
181335
  *
181500
181336
  * @remarks
181501
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181502
- * @beta
181337
+ * [Api set: PowerPointApi 1.9]
181503
181338
  */
181504
181339
  transparency?: boolean;
181505
181340
  /**
181506
181341
  * Represents the weight of the line, in points.
181507
181342
  *
181508
181343
  * @remarks
181509
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181510
- * @beta
181344
+ * [Api set: PowerPointApi 1.9]
181511
181345
  */
181512
181346
  weight?: boolean;
181513
181347
  }
@@ -181515,8 +181349,7 @@ declare namespace PowerPoint {
181515
181349
  * Represents the borders for a table cell.
181516
181350
  *
181517
181351
  * @remarks
181518
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181519
- * @beta
181352
+ * [Api set: PowerPointApi 1.9]
181520
181353
  */
181521
181354
  interface BordersLoadOptions {
181522
181355
  /**
@@ -181527,48 +181360,42 @@ declare namespace PowerPoint {
181527
181360
  * Gets the bottom border.
181528
181361
  *
181529
181362
  * @remarks
181530
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181531
- * @beta
181363
+ * [Api set: PowerPointApi 1.9]
181532
181364
  */
181533
181365
  bottom?: PowerPoint.Interfaces.BorderLoadOptions;
181534
181366
  /**
181535
181367
  * Gets the diagonal border (top-left to bottom-right).
181536
181368
  *
181537
181369
  * @remarks
181538
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181539
- * @beta
181370
+ * [Api set: PowerPointApi 1.9]
181540
181371
  */
181541
181372
  diagonalDown?: PowerPoint.Interfaces.BorderLoadOptions;
181542
181373
  /**
181543
181374
  * Gets the diagonal border (bottom-left to top-right).
181544
181375
  *
181545
181376
  * @remarks
181546
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181547
- * @beta
181377
+ * [Api set: PowerPointApi 1.9]
181548
181378
  */
181549
181379
  diagonalUp?: PowerPoint.Interfaces.BorderLoadOptions;
181550
181380
  /**
181551
181381
  * Gets the left border.
181552
181382
  *
181553
181383
  * @remarks
181554
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181555
- * @beta
181384
+ * [Api set: PowerPointApi 1.9]
181556
181385
  */
181557
181386
  left?: PowerPoint.Interfaces.BorderLoadOptions;
181558
181387
  /**
181559
181388
  * Gets the right border.
181560
181389
  *
181561
181390
  * @remarks
181562
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181563
- * @beta
181391
+ * [Api set: PowerPointApi 1.9]
181564
181392
  */
181565
181393
  right?: PowerPoint.Interfaces.BorderLoadOptions;
181566
181394
  /**
181567
181395
  * Gets the top border.
181568
181396
  *
181569
181397
  * @remarks
181570
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181571
- * @beta
181398
+ * [Api set: PowerPointApi 1.9]
181572
181399
  */
181573
181400
  top?: PowerPoint.Interfaces.BorderLoadOptions;
181574
181401
  }
@@ -181576,8 +181403,7 @@ declare namespace PowerPoint {
181576
181403
  * Represents the margins of a table cell.
181577
181404
  *
181578
181405
  * @remarks
181579
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181580
- * @beta
181406
+ * [Api set: PowerPointApi 1.9]
181581
181407
  */
181582
181408
  interface MarginsLoadOptions {
181583
181409
  /**
@@ -181588,32 +181414,28 @@ declare namespace PowerPoint {
181588
181414
  * Specifies the bottom margin in points.
181589
181415
  *
181590
181416
  * @remarks
181591
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181592
- * @beta
181417
+ * [Api set: PowerPointApi 1.9]
181593
181418
  */
181594
181419
  bottom?: boolean;
181595
181420
  /**
181596
181421
  * Specifies the left margin in points.
181597
181422
  *
181598
181423
  * @remarks
181599
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181600
- * @beta
181424
+ * [Api set: PowerPointApi 1.9]
181601
181425
  */
181602
181426
  left?: boolean;
181603
181427
  /**
181604
181428
  * Specifies the right margin in points.
181605
181429
  *
181606
181430
  * @remarks
181607
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181608
- * @beta
181431
+ * [Api set: PowerPointApi 1.9]
181609
181432
  */
181610
181433
  right?: boolean;
181611
181434
  /**
181612
181435
  * Specifies the top margin in points.
181613
181436
  *
181614
181437
  * @remarks
181615
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181616
- * @beta
181438
+ * [Api set: PowerPointApi 1.9]
181617
181439
  */
181618
181440
  top?: boolean;
181619
181441
  }
@@ -181809,32 +181631,28 @@ declare namespace PowerPoint {
181809
181631
  * Gets the collection of borders for the table cell.
181810
181632
  *
181811
181633
  * @remarks
181812
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181813
- * @beta
181634
+ * [Api set: PowerPointApi 1.9]
181814
181635
  */
181815
181636
  borders?: PowerPoint.Interfaces.BordersLoadOptions;
181816
181637
  /**
181817
181638
  * Gets the fill color of the table cell.
181818
181639
  *
181819
181640
  * @remarks
181820
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181821
- * @beta
181641
+ * [Api set: PowerPointApi 1.9]
181822
181642
  */
181823
181643
  fill?: PowerPoint.Interfaces.ShapeFillLoadOptions;
181824
181644
  /**
181825
181645
  * Gets the font of the table cell.
181826
181646
  *
181827
181647
  * @remarks
181828
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181829
- * @beta
181648
+ * [Api set: PowerPointApi 1.9]
181830
181649
  */
181831
181650
  font?: PowerPoint.Interfaces.ShapeFontLoadOptions;
181832
181651
  /**
181833
181652
  * Gets the set of margins in the table cell.
181834
181653
  *
181835
181654
  * @remarks
181836
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181837
- * @beta
181655
+ * [Api set: PowerPointApi 1.9]
181838
181656
  */
181839
181657
  margins?: PowerPoint.Interfaces.MarginsLoadOptions;
181840
181658
  /**
@@ -181856,16 +181674,14 @@ declare namespace PowerPoint {
181856
181674
  * Specifies the horizontal alignment of the text in the table cell. Returns `null` if the cell text contains different alignments.
181857
181675
  *
181858
181676
  * @remarks
181859
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181860
- * @beta
181677
+ * [Api set: PowerPointApi 1.9]
181861
181678
  */
181862
181679
  horizontalAlignment?: boolean;
181863
181680
  /**
181864
181681
  * Specifies the indent level of the text in the table cell. Returns `null` if the cell text contains different indent levels.
181865
181682
  *
181866
181683
  * @remarks
181867
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181868
- * @beta
181684
+ * [Api set: PowerPointApi 1.9]
181869
181685
  */
181870
181686
  indentLevel?: boolean;
181871
181687
  /**
@@ -181895,16 +181711,14 @@ declare namespace PowerPoint {
181895
181711
  Each `TextRun` object represents a sequence of one or more characters that share the same font attributes.
181896
181712
  *
181897
181713
  * @remarks
181898
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181899
- * @beta
181714
+ * [Api set: PowerPointApi 1.9]
181900
181715
  */
181901
181716
  textRuns?: boolean;
181902
181717
  /**
181903
181718
  * Specifies the vertical alignment of the text in the table cell.
181904
181719
  *
181905
181720
  * @remarks
181906
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181907
- * @beta
181721
+ * [Api set: PowerPointApi 1.9]
181908
181722
  */
181909
181723
  verticalAlignment?: boolean;
181910
181724
  }
@@ -181923,32 +181737,28 @@ declare namespace PowerPoint {
181923
181737
  * For EACH ITEM in the collection: Gets the collection of borders for the table cell.
181924
181738
  *
181925
181739
  * @remarks
181926
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181927
- * @beta
181740
+ * [Api set: PowerPointApi 1.9]
181928
181741
  */
181929
181742
  borders?: PowerPoint.Interfaces.BordersLoadOptions;
181930
181743
  /**
181931
181744
  * For EACH ITEM in the collection: Gets the fill color of the table cell.
181932
181745
  *
181933
181746
  * @remarks
181934
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181935
- * @beta
181747
+ * [Api set: PowerPointApi 1.9]
181936
181748
  */
181937
181749
  fill?: PowerPoint.Interfaces.ShapeFillLoadOptions;
181938
181750
  /**
181939
181751
  * For EACH ITEM in the collection: Gets the font of the table cell.
181940
181752
  *
181941
181753
  * @remarks
181942
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181943
- * @beta
181754
+ * [Api set: PowerPointApi 1.9]
181944
181755
  */
181945
181756
  font?: PowerPoint.Interfaces.ShapeFontLoadOptions;
181946
181757
  /**
181947
181758
  * For EACH ITEM in the collection: Gets the set of margins in the table cell.
181948
181759
  *
181949
181760
  * @remarks
181950
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181951
- * @beta
181761
+ * [Api set: PowerPointApi 1.9]
181952
181762
  */
181953
181763
  margins?: PowerPoint.Interfaces.MarginsLoadOptions;
181954
181764
  /**
@@ -181970,16 +181780,14 @@ declare namespace PowerPoint {
181970
181780
  * For EACH ITEM in the collection: Specifies the horizontal alignment of the text in the table cell. Returns `null` if the cell text contains different alignments.
181971
181781
  *
181972
181782
  * @remarks
181973
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181974
- * @beta
181783
+ * [Api set: PowerPointApi 1.9]
181975
181784
  */
181976
181785
  horizontalAlignment?: boolean;
181977
181786
  /**
181978
181787
  * For EACH ITEM in the collection: Specifies the indent level of the text in the table cell. Returns `null` if the cell text contains different indent levels.
181979
181788
  *
181980
181789
  * @remarks
181981
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
181982
- * @beta
181790
+ * [Api set: PowerPointApi 1.9]
181983
181791
  */
181984
181792
  indentLevel?: boolean;
181985
181793
  /**
@@ -182009,16 +181817,14 @@ declare namespace PowerPoint {
182009
181817
  Each `TextRun` object represents a sequence of one or more characters that share the same font attributes.
182010
181818
  *
182011
181819
  * @remarks
182012
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182013
- * @beta
181820
+ * [Api set: PowerPointApi 1.9]
182014
181821
  */
182015
181822
  textRuns?: boolean;
182016
181823
  /**
182017
181824
  * For EACH ITEM in the collection: Specifies the vertical alignment of the text in the table cell.
182018
181825
  *
182019
181826
  * @remarks
182020
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182021
- * @beta
181827
+ * [Api set: PowerPointApi 1.9]
182022
181828
  */
182023
181829
  verticalAlignment?: boolean;
182024
181830
  }
@@ -182026,8 +181832,7 @@ declare namespace PowerPoint {
182026
181832
  * Represents a column in a table.
182027
181833
  *
182028
181834
  * @remarks
182029
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182030
- * @beta
181835
+ * [Api set: PowerPointApi 1.9]
182031
181836
  */
182032
181837
  interface TableColumnLoadOptions {
182033
181838
  /**
@@ -182038,16 +181843,14 @@ declare namespace PowerPoint {
182038
181843
  * Returns the index number of the column within the column collection of the table. Zero-indexed.
182039
181844
  *
182040
181845
  * @remarks
182041
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182042
- * @beta
181846
+ * [Api set: PowerPointApi 1.9]
182043
181847
  */
182044
181848
  columnIndex?: boolean;
182045
181849
  /**
182046
181850
  * Retrieves the width of the column in points. If the set column width is less than the minimum width, the column width will be increased to the minimum width.
182047
181851
  *
182048
181852
  * @remarks
182049
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182050
- * @beta
181853
+ * [Api set: PowerPointApi 1.9]
182051
181854
  */
182052
181855
  width?: boolean;
182053
181856
  }
@@ -182055,8 +181858,7 @@ declare namespace PowerPoint {
182055
181858
  * Represents a collection of table columns.
182056
181859
  *
182057
181860
  * @remarks
182058
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182059
- * @beta
181861
+ * [Api set: PowerPointApi 1.9]
182060
181862
  */
182061
181863
  interface TableColumnCollectionLoadOptions {
182062
181864
  /**
@@ -182067,16 +181869,14 @@ declare namespace PowerPoint {
182067
181869
  * For EACH ITEM in the collection: Returns the index number of the column within the column collection of the table. Zero-indexed.
182068
181870
  *
182069
181871
  * @remarks
182070
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182071
- * @beta
181872
+ * [Api set: PowerPointApi 1.9]
182072
181873
  */
182073
181874
  columnIndex?: boolean;
182074
181875
  /**
182075
181876
  * For EACH ITEM in the collection: Retrieves the width of the column in points. If the set column width is less than the minimum width, the column width will be increased to the minimum width.
182076
181877
  *
182077
181878
  * @remarks
182078
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182079
- * @beta
181879
+ * [Api set: PowerPointApi 1.9]
182080
181880
  */
182081
181881
  width?: boolean;
182082
181882
  }
@@ -182084,8 +181884,7 @@ declare namespace PowerPoint {
182084
181884
  * Represents a row in a table.
182085
181885
  *
182086
181886
  * @remarks
182087
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182088
- * @beta
181887
+ * [Api set: PowerPointApi 1.9]
182089
181888
  */
182090
181889
  interface TableRowLoadOptions {
182091
181890
  /**
@@ -182096,24 +181895,21 @@ declare namespace PowerPoint {
182096
181895
  * Retrieves the current height of the row in points.
182097
181896
  *
182098
181897
  * @remarks
182099
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182100
- * @beta
181898
+ * [Api set: PowerPointApi 1.9]
182101
181899
  */
182102
181900
  currentHeight?: boolean;
182103
181901
  /**
182104
181902
  * Specifies the height of the row in points. If the set row height is less than the minimum height, the row height will be increased to the minimum height.
182105
181903
  *
182106
181904
  * @remarks
182107
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182108
- * @beta
181905
+ * [Api set: PowerPointApi 1.9]
182109
181906
  */
182110
181907
  height?: boolean;
182111
181908
  /**
182112
181909
  * Returns the index number of the row within the rows collection of the table. Zero-indexed.
182113
181910
  *
182114
181911
  * @remarks
182115
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182116
- * @beta
181912
+ * [Api set: PowerPointApi 1.9]
182117
181913
  */
182118
181914
  rowIndex?: boolean;
182119
181915
  }
@@ -182121,8 +181917,7 @@ declare namespace PowerPoint {
182121
181917
  * Represents a collection of table rows.
182122
181918
  *
182123
181919
  * @remarks
182124
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182125
- * @beta
181920
+ * [Api set: PowerPointApi 1.9]
182126
181921
  */
182127
181922
  interface TableRowCollectionLoadOptions {
182128
181923
  /**
@@ -182133,24 +181928,21 @@ declare namespace PowerPoint {
182133
181928
  * For EACH ITEM in the collection: Retrieves the current height of the row in points.
182134
181929
  *
182135
181930
  * @remarks
182136
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182137
- * @beta
181931
+ * [Api set: PowerPointApi 1.9]
182138
181932
  */
182139
181933
  currentHeight?: boolean;
182140
181934
  /**
182141
181935
  * For EACH ITEM in the collection: Specifies the height of the row in points. If the set row height is less than the minimum height, the row height will be increased to the minimum height.
182142
181936
  *
182143
181937
  * @remarks
182144
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182145
- * @beta
181938
+ * [Api set: PowerPointApi 1.9]
182146
181939
  */
182147
181940
  height?: boolean;
182148
181941
  /**
182149
181942
  * For EACH ITEM in the collection: Returns the index number of the row within the rows collection of the table. Zero-indexed.
182150
181943
  *
182151
181944
  * @remarks
182152
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
182153
- * @beta
181945
+ * [Api set: PowerPointApi 1.9]
182154
181946
  */
182155
181947
  rowIndex?: boolean;
182156
181948
  }