@types/office-js-preview 1.0.310 → 1.0.313

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.
@@ -18808,6 +18808,10 @@ declare namespace Office {
18808
18808
  * <td>The mailbox is associated with a personal Outlook.com account.</td>
18809
18809
  * </tr>
18810
18810
  * </table>
18811
+ *
18812
+ * **Note**: For hybrid Exchange environments, the returned account type value depends on where the mailbox is hosted.
18813
+ * If the mailbox is on an on-premises server, the account type value is **enterprise**. However, if it's hosted on
18814
+ * Exchange Online, the account type value is **office365**.
18811
18815
  */
18812
18816
  accountType: string;
18813
18817
  /**
@@ -19132,14 +19136,16 @@ declare namespace OfficeExtension {
19132
19136
  * Track a new object for automatic adjustment based on surrounding changes in the document. Only some object types require this.
19133
19137
  * If you are using an object across ".sync" calls and outside the sequential execution of a ".run" batch,
19134
19138
  * and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you needed to have added the object
19135
- * to the tracked object collection when the object was first created.
19139
+ * to the tracked object collection when the object was first created. If this object is part of a collection in Word, you should also track
19140
+ * the parent collection.
19136
19141
  */
19137
19142
  add(object: ClientObject): void;
19138
19143
  /**
19139
19144
  * Track a set of objects for automatic adjustment based on surrounding changes in the document. Only some object types require this.
19140
19145
  * If you are using an object across ".sync" calls and outside the sequential execution of a ".run" batch,
19141
19146
  * and get an "InvalidObjectPath" error when setting a property or invoking a method on the object, you needed to have added the object
19142
- * to the tracked object collection when the object was first created.
19147
+ * to the tracked object collection when the object was first created. If this object is part of a collection in Word, you should also track
19148
+ * the parent collection.
19143
19149
  */
19144
19150
  add(objects: ClientObject[]): void;
19145
19151
  /**
@@ -109060,8 +109066,7 @@ declare namespace PowerPoint {
109060
109066
  * Represents the bullet formatting properties of a text that is attached to the {@link PowerPoint.ParagraphFormat}.
109061
109067
  *
109062
109068
  * @remarks
109063
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109064
- * @beta
109069
+ * [Api set: PowerPointApi 1.4]
109065
109070
  */
109066
109071
  class BulletFormat extends OfficeExtension.ClientObject {
109067
109072
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -109070,8 +109075,7 @@ declare namespace PowerPoint {
109070
109075
  * Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
109071
109076
  *
109072
109077
  * @remarks
109073
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109074
- * @beta
109078
+ * [Api set: PowerPointApi 1.4]
109075
109079
  */
109076
109080
  visible: boolean;
109077
109081
  /**
@@ -109105,29 +109109,25 @@ declare namespace PowerPoint {
109105
109109
  * Specifies the connector type for line shapes.
109106
109110
  *
109107
109111
  * @remarks
109108
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109109
- * @beta
109112
+ * [Api set: PowerPointApi 1.4]
109110
109113
  */
109111
109114
  enum ConnectorType {
109112
109115
  /**
109113
109116
  * Straight connector type
109114
109117
  * @remarks
109115
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109116
- * @beta
109118
+ * [Api set: PowerPointApi 1.4]
109117
109119
  */
109118
109120
  straight = "Straight",
109119
109121
  /**
109120
109122
  * Elbow connector type
109121
109123
  * @remarks
109122
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109123
- * @beta
109124
+ * [Api set: PowerPointApi 1.4]
109124
109125
  */
109125
109126
  elbow = "Elbow",
109126
109127
  /**
109127
109128
  * Curve connector type
109128
109129
  * @remarks
109129
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109130
- * @beta
109130
+ * [Api set: PowerPointApi 1.4]
109131
109131
  */
109132
109132
  curve = "Curve",
109133
109133
  }
@@ -109135,1247 +109135,1069 @@ declare namespace PowerPoint {
109135
109135
  * Specifies the shape type for a `GeometricShape` object.
109136
109136
  *
109137
109137
  * @remarks
109138
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109139
- * @beta
109138
+ * [Api set: PowerPointApi 1.4]
109140
109139
  */
109141
109140
  enum GeometricShapeType {
109142
109141
  /**
109143
109142
  * Straight Line from Top-Right Corner to Bottom-Left Corner of the Shape
109144
109143
  * @remarks
109145
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109146
- * @beta
109144
+ * [Api set: PowerPointApi 1.4]
109147
109145
  */
109148
109146
  lineInverse = "LineInverse",
109149
109147
  /**
109150
109148
  * Isosceles Triangle
109151
109149
  * @remarks
109152
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109153
- * @beta
109150
+ * [Api set: PowerPointApi 1.4]
109154
109151
  */
109155
109152
  triangle = "Triangle",
109156
109153
  /**
109157
109154
  * Right Triangle
109158
109155
  * @remarks
109159
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109160
- * @beta
109156
+ * [Api set: PowerPointApi 1.4]
109161
109157
  */
109162
109158
  rightTriangle = "RightTriangle",
109163
109159
  /**
109164
109160
  * Rectangle
109165
109161
  * @remarks
109166
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109167
- * @beta
109162
+ * [Api set: PowerPointApi 1.4]
109168
109163
  */
109169
109164
  rectangle = "Rectangle",
109170
109165
  /**
109171
109166
  * Diamond
109172
109167
  * @remarks
109173
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109174
- * @beta
109168
+ * [Api set: PowerPointApi 1.4]
109175
109169
  */
109176
109170
  diamond = "Diamond",
109177
109171
  /**
109178
109172
  * Parallelogram
109179
109173
  * @remarks
109180
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109181
- * @beta
109174
+ * [Api set: PowerPointApi 1.4]
109182
109175
  */
109183
109176
  parallelogram = "Parallelogram",
109184
109177
  /**
109185
109178
  * Trapezoid
109186
109179
  * @remarks
109187
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109188
- * @beta
109180
+ * [Api set: PowerPointApi 1.4]
109189
109181
  */
109190
109182
  trapezoid = "Trapezoid",
109191
109183
  /**
109192
109184
  * Trapezoid which may have Non-Equal Sides
109193
109185
  * @remarks
109194
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109195
- * @beta
109186
+ * [Api set: PowerPointApi 1.4]
109196
109187
  */
109197
109188
  nonIsoscelesTrapezoid = "NonIsoscelesTrapezoid",
109198
109189
  /**
109199
109190
  * Pentagon
109200
109191
  * @remarks
109201
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109202
- * @beta
109192
+ * [Api set: PowerPointApi 1.4]
109203
109193
  */
109204
109194
  pentagon = "Pentagon",
109205
109195
  /**
109206
109196
  * Hexagon
109207
109197
  * @remarks
109208
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109209
- * @beta
109198
+ * [Api set: PowerPointApi 1.4]
109210
109199
  */
109211
109200
  hexagon = "Hexagon",
109212
109201
  /**
109213
109202
  * Heptagon
109214
109203
  * @remarks
109215
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109216
- * @beta
109204
+ * [Api set: PowerPointApi 1.4]
109217
109205
  */
109218
109206
  heptagon = "Heptagon",
109219
109207
  /**
109220
109208
  * Octagon
109221
109209
  * @remarks
109222
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109223
- * @beta
109210
+ * [Api set: PowerPointApi 1.4]
109224
109211
  */
109225
109212
  octagon = "Octagon",
109226
109213
  /**
109227
109214
  * Decagon
109228
109215
  * @remarks
109229
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109230
- * @beta
109216
+ * [Api set: PowerPointApi 1.4]
109231
109217
  */
109232
109218
  decagon = "Decagon",
109233
109219
  /**
109234
109220
  * Dodecagon
109235
109221
  * @remarks
109236
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109237
- * @beta
109222
+ * [Api set: PowerPointApi 1.4]
109238
109223
  */
109239
109224
  dodecagon = "Dodecagon",
109240
109225
  /**
109241
109226
  * Star: 4 Points
109242
109227
  * @remarks
109243
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109244
- * @beta
109228
+ * [Api set: PowerPointApi 1.4]
109245
109229
  */
109246
109230
  star4 = "Star4",
109247
109231
  /**
109248
109232
  * Star: 5 Points
109249
109233
  * @remarks
109250
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109251
- * @beta
109234
+ * [Api set: PowerPointApi 1.4]
109252
109235
  */
109253
109236
  star5 = "Star5",
109254
109237
  /**
109255
109238
  * Star: 6 Points
109256
109239
  * @remarks
109257
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109258
- * @beta
109240
+ * [Api set: PowerPointApi 1.4]
109259
109241
  */
109260
109242
  star6 = "Star6",
109261
109243
  /**
109262
109244
  * Star: 7 Points
109263
109245
  * @remarks
109264
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109265
- * @beta
109246
+ * [Api set: PowerPointApi 1.4]
109266
109247
  */
109267
109248
  star7 = "Star7",
109268
109249
  /**
109269
109250
  * Star: 8 Points
109270
109251
  * @remarks
109271
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109272
- * @beta
109252
+ * [Api set: PowerPointApi 1.4]
109273
109253
  */
109274
109254
  star8 = "Star8",
109275
109255
  /**
109276
109256
  * Star: 10 Points
109277
109257
  * @remarks
109278
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109279
- * @beta
109258
+ * [Api set: PowerPointApi 1.4]
109280
109259
  */
109281
109260
  star10 = "Star10",
109282
109261
  /**
109283
109262
  * Star: 12 Points
109284
109263
  * @remarks
109285
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109286
- * @beta
109264
+ * [Api set: PowerPointApi 1.4]
109287
109265
  */
109288
109266
  star12 = "Star12",
109289
109267
  /**
109290
109268
  * Star: 16 Points
109291
109269
  * @remarks
109292
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109293
- * @beta
109270
+ * [Api set: PowerPointApi 1.4]
109294
109271
  */
109295
109272
  star16 = "Star16",
109296
109273
  /**
109297
109274
  * Star: 24 Points
109298
109275
  * @remarks
109299
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109300
- * @beta
109276
+ * [Api set: PowerPointApi 1.4]
109301
109277
  */
109302
109278
  star24 = "Star24",
109303
109279
  /**
109304
109280
  * Star: 32 Points
109305
109281
  * @remarks
109306
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109307
- * @beta
109282
+ * [Api set: PowerPointApi 1.4]
109308
109283
  */
109309
109284
  star32 = "Star32",
109310
109285
  /**
109311
109286
  * Rectangle: Rounded Corners
109312
109287
  * @remarks
109313
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109314
- * @beta
109288
+ * [Api set: PowerPointApi 1.4]
109315
109289
  */
109316
109290
  roundRectangle = "RoundRectangle",
109317
109291
  /**
109318
109292
  * Rectangle: Single Corner Rounded
109319
109293
  * @remarks
109320
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109321
- * @beta
109294
+ * [Api set: PowerPointApi 1.4]
109322
109295
  */
109323
109296
  round1Rectangle = "Round1Rectangle",
109324
109297
  /**
109325
109298
  * Rectangle: Top Corners Rounded
109326
109299
  * @remarks
109327
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109328
- * @beta
109300
+ * [Api set: PowerPointApi 1.4]
109329
109301
  */
109330
109302
  round2SameRectangle = "Round2SameRectangle",
109331
109303
  /**
109332
109304
  * Rectangle: Diagonal Corners Rounded
109333
109305
  * @remarks
109334
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109335
- * @beta
109306
+ * [Api set: PowerPointApi 1.4]
109336
109307
  */
109337
109308
  round2DiagonalRectangle = "Round2DiagonalRectangle",
109338
109309
  /**
109339
109310
  * Rectangle: Top Corners One Rounded and One Snipped
109340
109311
  * @remarks
109341
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109342
- * @beta
109312
+ * [Api set: PowerPointApi 1.4]
109343
109313
  */
109344
109314
  snipRoundRectangle = "SnipRoundRectangle",
109345
109315
  /**
109346
109316
  * Rectangle: Single Corner Snipped
109347
109317
  * @remarks
109348
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109349
- * @beta
109318
+ * [Api set: PowerPointApi 1.4]
109350
109319
  */
109351
109320
  snip1Rectangle = "Snip1Rectangle",
109352
109321
  /**
109353
109322
  * Rectangle: Top Corners Snipped
109354
109323
  * @remarks
109355
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109356
- * @beta
109324
+ * [Api set: PowerPointApi 1.4]
109357
109325
  */
109358
109326
  snip2SameRectangle = "Snip2SameRectangle",
109359
109327
  /**
109360
109328
  * Rectangle: Diagonal Corners Snipped
109361
109329
  * @remarks
109362
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109363
- * @beta
109330
+ * [Api set: PowerPointApi 1.4]
109364
109331
  */
109365
109332
  snip2DiagonalRectangle = "Snip2DiagonalRectangle",
109366
109333
  /**
109367
109334
  * Plaque
109368
109335
  * @remarks
109369
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109370
- * @beta
109336
+ * [Api set: PowerPointApi 1.4]
109371
109337
  */
109372
109338
  plaque = "Plaque",
109373
109339
  /**
109374
109340
  * Oval
109375
109341
  * @remarks
109376
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109377
- * @beta
109342
+ * [Api set: PowerPointApi 1.4]
109378
109343
  */
109379
109344
  ellipse = "Ellipse",
109380
109345
  /**
109381
109346
  * Teardrop
109382
109347
  * @remarks
109383
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109384
- * @beta
109348
+ * [Api set: PowerPointApi 1.4]
109385
109349
  */
109386
109350
  teardrop = "Teardrop",
109387
109351
  /**
109388
109352
  * Arrow: Pentagon
109389
109353
  * @remarks
109390
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109391
- * @beta
109354
+ * [Api set: PowerPointApi 1.4]
109392
109355
  */
109393
109356
  homePlate = "HomePlate",
109394
109357
  /**
109395
109358
  * Arrow: Chevron
109396
109359
  * @remarks
109397
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109398
- * @beta
109360
+ * [Api set: PowerPointApi 1.4]
109399
109361
  */
109400
109362
  chevron = "Chevron",
109401
109363
  /**
109402
109364
  * Partial Circle
109403
109365
  * @remarks
109404
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109405
- * @beta
109366
+ * [Api set: PowerPointApi 1.4]
109406
109367
  */
109407
109368
  pieWedge = "PieWedge",
109408
109369
  /**
109409
109370
  * Partial Circle with Adjustable Spanning Area
109410
109371
  * @remarks
109411
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109412
- * @beta
109372
+ * [Api set: PowerPointApi 1.4]
109413
109373
  */
109414
109374
  pie = "Pie",
109415
109375
  /**
109416
109376
  * Block Arc
109417
109377
  * @remarks
109418
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109419
- * @beta
109378
+ * [Api set: PowerPointApi 1.4]
109420
109379
  */
109421
109380
  blockArc = "BlockArc",
109422
109381
  /**
109423
109382
  * Circle: Hollow
109424
109383
  * @remarks
109425
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109426
- * @beta
109384
+ * [Api set: PowerPointApi 1.4]
109427
109385
  */
109428
109386
  donut = "Donut",
109429
109387
  /**
109430
109388
  * "Not Allowed" Symbol
109431
109389
  * @remarks
109432
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109433
- * @beta
109390
+ * [Api set: PowerPointApi 1.4]
109434
109391
  */
109435
109392
  noSmoking = "NoSmoking",
109436
109393
  /**
109437
109394
  * Arrow: Right
109438
109395
  * @remarks
109439
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109440
- * @beta
109396
+ * [Api set: PowerPointApi 1.4]
109441
109397
  */
109442
109398
  rightArrow = "RightArrow",
109443
109399
  /**
109444
109400
  * Arrow: Left
109445
109401
  * @remarks
109446
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109447
- * @beta
109402
+ * [Api set: PowerPointApi 1.4]
109448
109403
  */
109449
109404
  leftArrow = "LeftArrow",
109450
109405
  /**
109451
109406
  * Arrow: Up
109452
109407
  * @remarks
109453
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109454
- * @beta
109408
+ * [Api set: PowerPointApi 1.4]
109455
109409
  */
109456
109410
  upArrow = "UpArrow",
109457
109411
  /**
109458
109412
  * Arrow: Down
109459
109413
  * @remarks
109460
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109461
- * @beta
109414
+ * [Api set: PowerPointApi 1.4]
109462
109415
  */
109463
109416
  downArrow = "DownArrow",
109464
109417
  /**
109465
109418
  * Arrow: Striped Right
109466
109419
  * @remarks
109467
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109468
- * @beta
109420
+ * [Api set: PowerPointApi 1.4]
109469
109421
  */
109470
109422
  stripedRightArrow = "StripedRightArrow",
109471
109423
  /**
109472
109424
  * Arrow: Notched Right
109473
109425
  * @remarks
109474
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109475
- * @beta
109426
+ * [Api set: PowerPointApi 1.4]
109476
109427
  */
109477
109428
  notchedRightArrow = "NotchedRightArrow",
109478
109429
  /**
109479
109430
  * Arrow: Bent-Up
109480
109431
  * @remarks
109481
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109482
- * @beta
109432
+ * [Api set: PowerPointApi 1.4]
109483
109433
  */
109484
109434
  bentUpArrow = "BentUpArrow",
109485
109435
  /**
109486
109436
  * Arrow: Left-Right
109487
109437
  * @remarks
109488
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109489
- * @beta
109438
+ * [Api set: PowerPointApi 1.4]
109490
109439
  */
109491
109440
  leftRightArrow = "LeftRightArrow",
109492
109441
  /**
109493
109442
  * Arrow: Up-Down
109494
109443
  * @remarks
109495
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109496
- * @beta
109444
+ * [Api set: PowerPointApi 1.4]
109497
109445
  */
109498
109446
  upDownArrow = "UpDownArrow",
109499
109447
  /**
109500
109448
  * Arrow: Left-Up
109501
109449
  * @remarks
109502
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109503
- * @beta
109450
+ * [Api set: PowerPointApi 1.4]
109504
109451
  */
109505
109452
  leftUpArrow = "LeftUpArrow",
109506
109453
  /**
109507
109454
  * Arrow: Left-Right-Up
109508
109455
  * @remarks
109509
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109510
- * @beta
109456
+ * [Api set: PowerPointApi 1.4]
109511
109457
  */
109512
109458
  leftRightUpArrow = "LeftRightUpArrow",
109513
109459
  /**
109514
109460
  * Arrow: Quad
109515
109461
  * @remarks
109516
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109517
- * @beta
109462
+ * [Api set: PowerPointApi 1.4]
109518
109463
  */
109519
109464
  quadArrow = "QuadArrow",
109520
109465
  /**
109521
109466
  * Callout: Left Arrow
109522
109467
  * @remarks
109523
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109524
- * @beta
109468
+ * [Api set: PowerPointApi 1.4]
109525
109469
  */
109526
109470
  leftArrowCallout = "LeftArrowCallout",
109527
109471
  /**
109528
109472
  * Callout: Right Arrow
109529
109473
  * @remarks
109530
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109531
- * @beta
109474
+ * [Api set: PowerPointApi 1.4]
109532
109475
  */
109533
109476
  rightArrowCallout = "RightArrowCallout",
109534
109477
  /**
109535
109478
  * Callout: Up Arrow
109536
109479
  * @remarks
109537
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109538
- * @beta
109480
+ * [Api set: PowerPointApi 1.4]
109539
109481
  */
109540
109482
  upArrowCallout = "UpArrowCallout",
109541
109483
  /**
109542
109484
  * Callout: Down Arrow
109543
109485
  * @remarks
109544
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109545
- * @beta
109486
+ * [Api set: PowerPointApi 1.4]
109546
109487
  */
109547
109488
  downArrowCallout = "DownArrowCallout",
109548
109489
  /**
109549
109490
  * Callout: Left-Right Arrow
109550
109491
  * @remarks
109551
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109552
- * @beta
109492
+ * [Api set: PowerPointApi 1.4]
109553
109493
  */
109554
109494
  leftRightArrowCallout = "LeftRightArrowCallout",
109555
109495
  /**
109556
109496
  * Callout: Up-Down Arrow
109557
109497
  * @remarks
109558
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109559
- * @beta
109498
+ * [Api set: PowerPointApi 1.4]
109560
109499
  */
109561
109500
  upDownArrowCallout = "UpDownArrowCallout",
109562
109501
  /**
109563
109502
  * Callout: Quad Arrow
109564
109503
  * @remarks
109565
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109566
- * @beta
109504
+ * [Api set: PowerPointApi 1.4]
109567
109505
  */
109568
109506
  quadArrowCallout = "QuadArrowCallout",
109569
109507
  /**
109570
109508
  * Arrow: Bent
109571
109509
  * @remarks
109572
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109573
- * @beta
109510
+ * [Api set: PowerPointApi 1.4]
109574
109511
  */
109575
109512
  bentArrow = "BentArrow",
109576
109513
  /**
109577
109514
  * Arrow: U-Turn
109578
109515
  * @remarks
109579
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109580
- * @beta
109516
+ * [Api set: PowerPointApi 1.4]
109581
109517
  */
109582
109518
  uturnArrow = "UturnArrow",
109583
109519
  /**
109584
109520
  * Arrow: Circular
109585
109521
  * @remarks
109586
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109587
- * @beta
109522
+ * [Api set: PowerPointApi 1.4]
109588
109523
  */
109589
109524
  circularArrow = "CircularArrow",
109590
109525
  /**
109591
109526
  * Arrow: Circular with Opposite Arrow Direction
109592
109527
  * @remarks
109593
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109594
- * @beta
109528
+ * [Api set: PowerPointApi 1.4]
109595
109529
  */
109596
109530
  leftCircularArrow = "LeftCircularArrow",
109597
109531
  /**
109598
109532
  * Arrow: Circular with Two Arrows in Both Directions
109599
109533
  * @remarks
109600
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109601
- * @beta
109534
+ * [Api set: PowerPointApi 1.4]
109602
109535
  */
109603
109536
  leftRightCircularArrow = "LeftRightCircularArrow",
109604
109537
  /**
109605
109538
  * Arrow: Curved Right
109606
109539
  * @remarks
109607
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109608
- * @beta
109540
+ * [Api set: PowerPointApi 1.4]
109609
109541
  */
109610
109542
  curvedRightArrow = "CurvedRightArrow",
109611
109543
  /**
109612
109544
  * Arrow: Curved Left
109613
109545
  * @remarks
109614
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109615
- * @beta
109546
+ * [Api set: PowerPointApi 1.4]
109616
109547
  */
109617
109548
  curvedLeftArrow = "CurvedLeftArrow",
109618
109549
  /**
109619
109550
  * Arrow: Curved Up
109620
109551
  * @remarks
109621
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109622
- * @beta
109552
+ * [Api set: PowerPointApi 1.4]
109623
109553
  */
109624
109554
  curvedUpArrow = "CurvedUpArrow",
109625
109555
  /**
109626
109556
  * Arrow: Curved Down
109627
109557
  * @remarks
109628
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109629
- * @beta
109558
+ * [Api set: PowerPointApi 1.4]
109630
109559
  */
109631
109560
  curvedDownArrow = "CurvedDownArrow",
109632
109561
  /**
109633
109562
  * Arrow: Curved Right Arrow with Varying Width
109634
109563
  * @remarks
109635
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109636
- * @beta
109564
+ * [Api set: PowerPointApi 1.4]
109637
109565
  */
109638
109566
  swooshArrow = "SwooshArrow",
109639
109567
  /**
109640
109568
  * Cube
109641
109569
  * @remarks
109642
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109643
- * @beta
109570
+ * [Api set: PowerPointApi 1.4]
109644
109571
  */
109645
109572
  cube = "Cube",
109646
109573
  /**
109647
109574
  * Cylinder
109648
109575
  * @remarks
109649
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109650
- * @beta
109576
+ * [Api set: PowerPointApi 1.4]
109651
109577
  */
109652
109578
  can = "Can",
109653
109579
  /**
109654
109580
  * Lightning Bolt
109655
109581
  * @remarks
109656
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109657
- * @beta
109582
+ * [Api set: PowerPointApi 1.4]
109658
109583
  */
109659
109584
  lightningBolt = "LightningBolt",
109660
109585
  /**
109661
109586
  * Heart
109662
109587
  * @remarks
109663
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109664
- * @beta
109588
+ * [Api set: PowerPointApi 1.4]
109665
109589
  */
109666
109590
  heart = "Heart",
109667
109591
  /**
109668
109592
  * Sun
109669
109593
  * @remarks
109670
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109671
- * @beta
109594
+ * [Api set: PowerPointApi 1.4]
109672
109595
  */
109673
109596
  sun = "Sun",
109674
109597
  /**
109675
109598
  * Moon
109676
109599
  * @remarks
109677
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109678
- * @beta
109600
+ * [Api set: PowerPointApi 1.4]
109679
109601
  */
109680
109602
  moon = "Moon",
109681
109603
  /**
109682
109604
  * Smiley Face
109683
109605
  * @remarks
109684
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109685
- * @beta
109606
+ * [Api set: PowerPointApi 1.4]
109686
109607
  */
109687
109608
  smileyFace = "SmileyFace",
109688
109609
  /**
109689
109610
  * Explosion: 8 Points
109690
109611
  * @remarks
109691
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109692
- * @beta
109612
+ * [Api set: PowerPointApi 1.4]
109693
109613
  */
109694
109614
  irregularSeal1 = "IrregularSeal1",
109695
109615
  /**
109696
109616
  * Explosion: 14 Points
109697
109617
  * @remarks
109698
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109699
- * @beta
109618
+ * [Api set: PowerPointApi 1.4]
109700
109619
  */
109701
109620
  irregularSeal2 = "IrregularSeal2",
109702
109621
  /**
109703
109622
  * Rectangle: Folded Corner
109704
109623
  * @remarks
109705
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109706
- * @beta
109624
+ * [Api set: PowerPointApi 1.4]
109707
109625
  */
109708
109626
  foldedCorner = "FoldedCorner",
109709
109627
  /**
109710
109628
  * Rectangle: Beveled
109711
109629
  * @remarks
109712
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109713
- * @beta
109630
+ * [Api set: PowerPointApi 1.4]
109714
109631
  */
109715
109632
  bevel = "Bevel",
109716
109633
  /**
109717
109634
  * Frame
109718
109635
  * @remarks
109719
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109720
- * @beta
109636
+ * [Api set: PowerPointApi 1.4]
109721
109637
  */
109722
109638
  frame = "Frame",
109723
109639
  /**
109724
109640
  * Half Frame
109725
109641
  * @remarks
109726
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109727
- * @beta
109642
+ * [Api set: PowerPointApi 1.4]
109728
109643
  */
109729
109644
  halfFrame = "HalfFrame",
109730
109645
  /**
109731
109646
  * L-Shape
109732
109647
  * @remarks
109733
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109734
- * @beta
109648
+ * [Api set: PowerPointApi 1.4]
109735
109649
  */
109736
109650
  corner = "Corner",
109737
109651
  /**
109738
109652
  * Diagonal Stripe
109739
109653
  * @remarks
109740
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109741
- * @beta
109654
+ * [Api set: PowerPointApi 1.4]
109742
109655
  */
109743
109656
  diagonalStripe = "DiagonalStripe",
109744
109657
  /**
109745
109658
  * Chord
109746
109659
  * @remarks
109747
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109748
- * @beta
109660
+ * [Api set: PowerPointApi 1.4]
109749
109661
  */
109750
109662
  chord = "Chord",
109751
109663
  /**
109752
109664
  * Arc
109753
109665
  * @remarks
109754
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109755
- * @beta
109666
+ * [Api set: PowerPointApi 1.4]
109756
109667
  */
109757
109668
  arc = "Arc",
109758
109669
  /**
109759
109670
  * Left Bracket
109760
109671
  * @remarks
109761
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109762
- * @beta
109672
+ * [Api set: PowerPointApi 1.4]
109763
109673
  */
109764
109674
  leftBracket = "LeftBracket",
109765
109675
  /**
109766
109676
  * Right Bracket
109767
109677
  * @remarks
109768
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109769
- * @beta
109678
+ * [Api set: PowerPointApi 1.4]
109770
109679
  */
109771
109680
  rightBracket = "RightBracket",
109772
109681
  /**
109773
109682
  * Left Brace
109774
109683
  * @remarks
109775
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109776
- * @beta
109684
+ * [Api set: PowerPointApi 1.4]
109777
109685
  */
109778
109686
  leftBrace = "LeftBrace",
109779
109687
  /**
109780
109688
  * Right Brace
109781
109689
  * @remarks
109782
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109783
- * @beta
109690
+ * [Api set: PowerPointApi 1.4]
109784
109691
  */
109785
109692
  rightBrace = "RightBrace",
109786
109693
  /**
109787
109694
  * Double Bracket
109788
109695
  * @remarks
109789
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109790
- * @beta
109696
+ * [Api set: PowerPointApi 1.4]
109791
109697
  */
109792
109698
  bracketPair = "BracketPair",
109793
109699
  /**
109794
109700
  * Double Brace
109795
109701
  * @remarks
109796
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109797
- * @beta
109702
+ * [Api set: PowerPointApi 1.4]
109798
109703
  */
109799
109704
  bracePair = "BracePair",
109800
109705
  /**
109801
109706
  * Callout: Line with No Border
109802
109707
  * @remarks
109803
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109804
- * @beta
109708
+ * [Api set: PowerPointApi 1.4]
109805
109709
  */
109806
109710
  callout1 = "Callout1",
109807
109711
  /**
109808
109712
  * Callout: Bent Line with No Border
109809
109713
  * @remarks
109810
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109811
- * @beta
109714
+ * [Api set: PowerPointApi 1.4]
109812
109715
  */
109813
109716
  callout2 = "Callout2",
109814
109717
  /**
109815
109718
  * Callout: Double Bent Line with No Border
109816
109719
  * @remarks
109817
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109818
- * @beta
109720
+ * [Api set: PowerPointApi 1.4]
109819
109721
  */
109820
109722
  callout3 = "Callout3",
109821
109723
  /**
109822
109724
  * Callout: Line with Accent Bar
109823
109725
  * @remarks
109824
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109825
- * @beta
109726
+ * [Api set: PowerPointApi 1.4]
109826
109727
  */
109827
109728
  accentCallout1 = "AccentCallout1",
109828
109729
  /**
109829
109730
  * Callout: Bent Line with Accent Bar
109830
109731
  * @remarks
109831
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109832
- * @beta
109732
+ * [Api set: PowerPointApi 1.4]
109833
109733
  */
109834
109734
  accentCallout2 = "AccentCallout2",
109835
109735
  /**
109836
109736
  * Callout: Double Bent Line with Accent Bar
109837
109737
  * @remarks
109838
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109839
- * @beta
109738
+ * [Api set: PowerPointApi 1.4]
109840
109739
  */
109841
109740
  accentCallout3 = "AccentCallout3",
109842
109741
  /**
109843
109742
  * Callout: Line
109844
109743
  * @remarks
109845
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109846
- * @beta
109744
+ * [Api set: PowerPointApi 1.4]
109847
109745
  */
109848
109746
  borderCallout1 = "BorderCallout1",
109849
109747
  /**
109850
109748
  * Callout: Bent Line
109851
109749
  * @remarks
109852
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109853
- * @beta
109750
+ * [Api set: PowerPointApi 1.4]
109854
109751
  */
109855
109752
  borderCallout2 = "BorderCallout2",
109856
109753
  /**
109857
109754
  * Callout: Double Bent Line
109858
109755
  * @remarks
109859
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109860
- * @beta
109756
+ * [Api set: PowerPointApi 1.4]
109861
109757
  */
109862
109758
  borderCallout3 = "BorderCallout3",
109863
109759
  /**
109864
109760
  * Callout: Line with Border and Accent Bar
109865
109761
  * @remarks
109866
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109867
- * @beta
109762
+ * [Api set: PowerPointApi 1.4]
109868
109763
  */
109869
109764
  accentBorderCallout1 = "AccentBorderCallout1",
109870
109765
  /**
109871
109766
  * Callout: Bent Line with Border and Accent Bar
109872
109767
  * @remarks
109873
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109874
- * @beta
109768
+ * [Api set: PowerPointApi 1.4]
109875
109769
  */
109876
109770
  accentBorderCallout2 = "AccentBorderCallout2",
109877
109771
  /**
109878
109772
  * Callout: Double Bent Line with Border and Accent Bar
109879
109773
  * @remarks
109880
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109881
- * @beta
109774
+ * [Api set: PowerPointApi 1.4]
109882
109775
  */
109883
109776
  accentBorderCallout3 = "AccentBorderCallout3",
109884
109777
  /**
109885
109778
  * Speech Bubble: Rectangle
109886
109779
  * @remarks
109887
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109888
- * @beta
109780
+ * [Api set: PowerPointApi 1.4]
109889
109781
  */
109890
109782
  wedgeRectCallout = "WedgeRectCallout",
109891
109783
  /**
109892
109784
  * Speech Bubble: Rectangle with Corners Rounded
109893
109785
  * @remarks
109894
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109895
- * @beta
109786
+ * [Api set: PowerPointApi 1.4]
109896
109787
  */
109897
109788
  wedgeRRectCallout = "WedgeRRectCallout",
109898
109789
  /**
109899
109790
  * Speech Bubble: Oval
109900
109791
  * @remarks
109901
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109902
- * @beta
109792
+ * [Api set: PowerPointApi 1.4]
109903
109793
  */
109904
109794
  wedgeEllipseCallout = "WedgeEllipseCallout",
109905
109795
  /**
109906
109796
  * Thought Bubble: Cloud
109907
109797
  * @remarks
109908
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109909
- * @beta
109798
+ * [Api set: PowerPointApi 1.4]
109910
109799
  */
109911
109800
  cloudCallout = "CloudCallout",
109912
109801
  /**
109913
109802
  * Cloud
109914
109803
  * @remarks
109915
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109916
- * @beta
109804
+ * [Api set: PowerPointApi 1.4]
109917
109805
  */
109918
109806
  cloud = "Cloud",
109919
109807
  /**
109920
109808
  * Ribbon: Tilted Down
109921
109809
  * @remarks
109922
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109923
- * @beta
109810
+ * [Api set: PowerPointApi 1.4]
109924
109811
  */
109925
109812
  ribbon = "Ribbon",
109926
109813
  /**
109927
109814
  * Ribbon: Tilted Up
109928
109815
  * @remarks
109929
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109930
- * @beta
109816
+ * [Api set: PowerPointApi 1.4]
109931
109817
  */
109932
109818
  ribbon2 = "Ribbon2",
109933
109819
  /**
109934
109820
  * Ribbon: Curved and Tilted Down
109935
109821
  * @remarks
109936
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109937
- * @beta
109822
+ * [Api set: PowerPointApi 1.4]
109938
109823
  */
109939
109824
  ellipseRibbon = "EllipseRibbon",
109940
109825
  /**
109941
109826
  * Ribbon: Curved and Tilted Up
109942
109827
  * @remarks
109943
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109944
- * @beta
109828
+ * [Api set: PowerPointApi 1.4]
109945
109829
  */
109946
109830
  ellipseRibbon2 = "EllipseRibbon2",
109947
109831
  /**
109948
109832
  * Ribbon: Straight with Both Left and Right Arrows
109949
109833
  * @remarks
109950
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109951
- * @beta
109834
+ * [Api set: PowerPointApi 1.4]
109952
109835
  */
109953
109836
  leftRightRibbon = "LeftRightRibbon",
109954
109837
  /**
109955
109838
  * Scroll: Vertical
109956
109839
  * @remarks
109957
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109958
- * @beta
109840
+ * [Api set: PowerPointApi 1.4]
109959
109841
  */
109960
109842
  verticalScroll = "VerticalScroll",
109961
109843
  /**
109962
109844
  * Scroll: Horizontal
109963
109845
  * @remarks
109964
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109965
- * @beta
109846
+ * [Api set: PowerPointApi 1.4]
109966
109847
  */
109967
109848
  horizontalScroll = "HorizontalScroll",
109968
109849
  /**
109969
109850
  * Wave
109970
109851
  * @remarks
109971
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109972
- * @beta
109852
+ * [Api set: PowerPointApi 1.4]
109973
109853
  */
109974
109854
  wave = "Wave",
109975
109855
  /**
109976
109856
  * Double Wave
109977
109857
  * @remarks
109978
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109979
- * @beta
109858
+ * [Api set: PowerPointApi 1.4]
109980
109859
  */
109981
109860
  doubleWave = "DoubleWave",
109982
109861
  /**
109983
109862
  * Cross
109984
109863
  * @remarks
109985
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109986
- * @beta
109864
+ * [Api set: PowerPointApi 1.4]
109987
109865
  */
109988
109866
  plus = "Plus",
109989
109867
  /**
109990
109868
  * Flowchart: Process
109991
109869
  * @remarks
109992
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
109993
- * @beta
109870
+ * [Api set: PowerPointApi 1.4]
109994
109871
  */
109995
109872
  flowChartProcess = "FlowChartProcess",
109996
109873
  /**
109997
109874
  * Flowchart: Decision
109998
109875
  * @remarks
109999
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110000
- * @beta
109876
+ * [Api set: PowerPointApi 1.4]
110001
109877
  */
110002
109878
  flowChartDecision = "FlowChartDecision",
110003
109879
  /**
110004
109880
  * Flowchart: Data
110005
109881
  * @remarks
110006
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110007
- * @beta
109882
+ * [Api set: PowerPointApi 1.4]
110008
109883
  */
110009
109884
  flowChartInputOutput = "FlowChartInputOutput",
110010
109885
  /**
110011
109886
  * Flowchart: Predefined Process
110012
109887
  * @remarks
110013
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110014
- * @beta
109888
+ * [Api set: PowerPointApi 1.4]
110015
109889
  */
110016
109890
  flowChartPredefinedProcess = "FlowChartPredefinedProcess",
110017
109891
  /**
110018
109892
  * Flowchart: Internal Storage
110019
109893
  * @remarks
110020
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110021
- * @beta
109894
+ * [Api set: PowerPointApi 1.4]
110022
109895
  */
110023
109896
  flowChartInternalStorage = "FlowChartInternalStorage",
110024
109897
  /**
110025
109898
  * Flowchart: Document
110026
109899
  * @remarks
110027
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110028
- * @beta
109900
+ * [Api set: PowerPointApi 1.4]
110029
109901
  */
110030
109902
  flowChartDocument = "FlowChartDocument",
110031
109903
  /**
110032
109904
  * Flowchart: Multidocument
110033
109905
  * @remarks
110034
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110035
- * @beta
109906
+ * [Api set: PowerPointApi 1.4]
110036
109907
  */
110037
109908
  flowChartMultidocument = "FlowChartMultidocument",
110038
109909
  /**
110039
109910
  * Flowchart: Terminator
110040
109911
  * @remarks
110041
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110042
- * @beta
109912
+ * [Api set: PowerPointApi 1.4]
110043
109913
  */
110044
109914
  flowChartTerminator = "FlowChartTerminator",
110045
109915
  /**
110046
109916
  * Flowchart: Preparation
110047
109917
  * @remarks
110048
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110049
- * @beta
109918
+ * [Api set: PowerPointApi 1.4]
110050
109919
  */
110051
109920
  flowChartPreparation = "FlowChartPreparation",
110052
109921
  /**
110053
109922
  * Flowchart: Manual Input
110054
109923
  * @remarks
110055
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110056
- * @beta
109924
+ * [Api set: PowerPointApi 1.4]
110057
109925
  */
110058
109926
  flowChartManualInput = "FlowChartManualInput",
110059
109927
  /**
110060
109928
  * Flowchart: Manual Operation
110061
109929
  * @remarks
110062
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110063
- * @beta
109930
+ * [Api set: PowerPointApi 1.4]
110064
109931
  */
110065
109932
  flowChartManualOperation = "FlowChartManualOperation",
110066
109933
  /**
110067
109934
  * Flowchart: Connector
110068
109935
  * @remarks
110069
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110070
- * @beta
109936
+ * [Api set: PowerPointApi 1.4]
110071
109937
  */
110072
109938
  flowChartConnector = "FlowChartConnector",
110073
109939
  /**
110074
109940
  * Flowchart: Card
110075
109941
  * @remarks
110076
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110077
- * @beta
109942
+ * [Api set: PowerPointApi 1.4]
110078
109943
  */
110079
109944
  flowChartPunchedCard = "FlowChartPunchedCard",
110080
109945
  /**
110081
109946
  * Flowchart: Punched Tape
110082
109947
  * @remarks
110083
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110084
- * @beta
109948
+ * [Api set: PowerPointApi 1.4]
110085
109949
  */
110086
109950
  flowChartPunchedTape = "FlowChartPunchedTape",
110087
109951
  /**
110088
109952
  * Flowchart: Summing Junction
110089
109953
  * @remarks
110090
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110091
- * @beta
109954
+ * [Api set: PowerPointApi 1.4]
110092
109955
  */
110093
109956
  flowChartSummingJunction = "FlowChartSummingJunction",
110094
109957
  /**
110095
109958
  * Flowchart: Or
110096
109959
  * @remarks
110097
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110098
- * @beta
109960
+ * [Api set: PowerPointApi 1.4]
110099
109961
  */
110100
109962
  flowChartOr = "FlowChartOr",
110101
109963
  /**
110102
109964
  * Flowchart: Collate
110103
109965
  * @remarks
110104
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110105
- * @beta
109966
+ * [Api set: PowerPointApi 1.4]
110106
109967
  */
110107
109968
  flowChartCollate = "FlowChartCollate",
110108
109969
  /**
110109
109970
  * Flowchart: Sort
110110
109971
  * @remarks
110111
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110112
- * @beta
109972
+ * [Api set: PowerPointApi 1.4]
110113
109973
  */
110114
109974
  flowChartSort = "FlowChartSort",
110115
109975
  /**
110116
109976
  * Flowchart: Extract
110117
109977
  * @remarks
110118
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110119
- * @beta
109978
+ * [Api set: PowerPointApi 1.4]
110120
109979
  */
110121
109980
  flowChartExtract = "FlowChartExtract",
110122
109981
  /**
110123
109982
  * Flowchart: Merge
110124
109983
  * @remarks
110125
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110126
- * @beta
109984
+ * [Api set: PowerPointApi 1.4]
110127
109985
  */
110128
109986
  flowChartMerge = "FlowChartMerge",
110129
109987
  /**
110130
109988
  * FlowChart: Offline Storage
110131
109989
  * @remarks
110132
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110133
- * @beta
109990
+ * [Api set: PowerPointApi 1.4]
110134
109991
  */
110135
109992
  flowChartOfflineStorage = "FlowChartOfflineStorage",
110136
109993
  /**
110137
109994
  * Flowchart: Stored Data
110138
109995
  * @remarks
110139
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110140
- * @beta
109996
+ * [Api set: PowerPointApi 1.4]
110141
109997
  */
110142
109998
  flowChartOnlineStorage = "FlowChartOnlineStorage",
110143
109999
  /**
110144
110000
  * Flowchart: Sequential Access Storage
110145
110001
  * @remarks
110146
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110147
- * @beta
110002
+ * [Api set: PowerPointApi 1.4]
110148
110003
  */
110149
110004
  flowChartMagneticTape = "FlowChartMagneticTape",
110150
110005
  /**
110151
110006
  * Flowchart: Magnetic Disk
110152
110007
  * @remarks
110153
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110154
- * @beta
110008
+ * [Api set: PowerPointApi 1.4]
110155
110009
  */
110156
110010
  flowChartMagneticDisk = "FlowChartMagneticDisk",
110157
110011
  /**
110158
110012
  * Flowchart: Direct Access Storage
110159
110013
  * @remarks
110160
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110161
- * @beta
110014
+ * [Api set: PowerPointApi 1.4]
110162
110015
  */
110163
110016
  flowChartMagneticDrum = "FlowChartMagneticDrum",
110164
110017
  /**
110165
110018
  * Flowchart: Display
110166
110019
  * @remarks
110167
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110168
- * @beta
110020
+ * [Api set: PowerPointApi 1.4]
110169
110021
  */
110170
110022
  flowChartDisplay = "FlowChartDisplay",
110171
110023
  /**
110172
110024
  * Flowchart: Delay
110173
110025
  * @remarks
110174
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110175
- * @beta
110026
+ * [Api set: PowerPointApi 1.4]
110176
110027
  */
110177
110028
  flowChartDelay = "FlowChartDelay",
110178
110029
  /**
110179
110030
  * Flowchart: Alternate Process
110180
110031
  * @remarks
110181
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110182
- * @beta
110032
+ * [Api set: PowerPointApi 1.4]
110183
110033
  */
110184
110034
  flowChartAlternateProcess = "FlowChartAlternateProcess",
110185
110035
  /**
110186
110036
  * Flowchart: Off-page Connector
110187
110037
  * @remarks
110188
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110189
- * @beta
110038
+ * [Api set: PowerPointApi 1.4]
110190
110039
  */
110191
110040
  flowChartOffpageConnector = "FlowChartOffpageConnector",
110192
110041
  /**
110193
110042
  * Action Button: Blank
110194
110043
  * @remarks
110195
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110196
- * @beta
110044
+ * [Api set: PowerPointApi 1.4]
110197
110045
  */
110198
110046
  actionButtonBlank = "ActionButtonBlank",
110199
110047
  /**
110200
110048
  * Action Button: Go Home
110201
110049
  * @remarks
110202
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110203
- * @beta
110050
+ * [Api set: PowerPointApi 1.4]
110204
110051
  */
110205
110052
  actionButtonHome = "ActionButtonHome",
110206
110053
  /**
110207
110054
  * Action Button: Help
110208
110055
  * @remarks
110209
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110210
- * @beta
110056
+ * [Api set: PowerPointApi 1.4]
110211
110057
  */
110212
110058
  actionButtonHelp = "ActionButtonHelp",
110213
110059
  /**
110214
110060
  * Action Button: Get Information
110215
110061
  * @remarks
110216
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110217
- * @beta
110062
+ * [Api set: PowerPointApi 1.4]
110218
110063
  */
110219
110064
  actionButtonInformation = "ActionButtonInformation",
110220
110065
  /**
110221
110066
  * Action Button: Go Forward or Next
110222
110067
  * @remarks
110223
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110224
- * @beta
110068
+ * [Api set: PowerPointApi 1.4]
110225
110069
  */
110226
110070
  actionButtonForwardNext = "ActionButtonForwardNext",
110227
110071
  /**
110228
110072
  * Action Button: Go Back or Previous
110229
110073
  * @remarks
110230
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110231
- * @beta
110074
+ * [Api set: PowerPointApi 1.4]
110232
110075
  */
110233
110076
  actionButtonBackPrevious = "ActionButtonBackPrevious",
110234
110077
  /**
110235
110078
  * Action Button: Go to End
110236
110079
  * @remarks
110237
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110238
- * @beta
110080
+ * [Api set: PowerPointApi 1.4]
110239
110081
  */
110240
110082
  actionButtonEnd = "ActionButtonEnd",
110241
110083
  /**
110242
110084
  * Action Button: Go to Beginning
110243
110085
  * @remarks
110244
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110245
- * @beta
110086
+ * [Api set: PowerPointApi 1.4]
110246
110087
  */
110247
110088
  actionButtonBeginning = "ActionButtonBeginning",
110248
110089
  /**
110249
110090
  * Action Button: Return
110250
110091
  * @remarks
110251
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110252
- * @beta
110092
+ * [Api set: PowerPointApi 1.4]
110253
110093
  */
110254
110094
  actionButtonReturn = "ActionButtonReturn",
110255
110095
  /**
110256
110096
  * Action Button: Document
110257
110097
  * @remarks
110258
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110259
- * @beta
110098
+ * [Api set: PowerPointApi 1.4]
110260
110099
  */
110261
110100
  actionButtonDocument = "ActionButtonDocument",
110262
110101
  /**
110263
110102
  * Action Button: Sound
110264
110103
  * @remarks
110265
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110266
- * @beta
110104
+ * [Api set: PowerPointApi 1.4]
110267
110105
  */
110268
110106
  actionButtonSound = "ActionButtonSound",
110269
110107
  /**
110270
110108
  * Action Button: Video
110271
110109
  * @remarks
110272
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110273
- * @beta
110110
+ * [Api set: PowerPointApi 1.4]
110274
110111
  */
110275
110112
  actionButtonMovie = "ActionButtonMovie",
110276
110113
  /**
110277
110114
  * Gear: A Gear with Six Teeth
110278
110115
  * @remarks
110279
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110280
- * @beta
110116
+ * [Api set: PowerPointApi 1.4]
110281
110117
  */
110282
110118
  gear6 = "Gear6",
110283
110119
  /**
110284
110120
  * Gear: A Gear with Nine Teeth
110285
110121
  * @remarks
110286
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110287
- * @beta
110122
+ * [Api set: PowerPointApi 1.4]
110288
110123
  */
110289
110124
  gear9 = "Gear9",
110290
110125
  /**
110291
110126
  * Funnel
110292
110127
  * @remarks
110293
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110294
- * @beta
110128
+ * [Api set: PowerPointApi 1.4]
110295
110129
  */
110296
110130
  funnel = "Funnel",
110297
110131
  /**
110298
110132
  * Plus Sign
110299
110133
  * @remarks
110300
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110301
- * @beta
110134
+ * [Api set: PowerPointApi 1.4]
110302
110135
  */
110303
110136
  mathPlus = "MathPlus",
110304
110137
  /**
110305
110138
  * Minus Sign
110306
110139
  * @remarks
110307
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110308
- * @beta
110140
+ * [Api set: PowerPointApi 1.4]
110309
110141
  */
110310
110142
  mathMinus = "MathMinus",
110311
110143
  /**
110312
110144
  * Multiplication Sign
110313
110145
  * @remarks
110314
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110315
- * @beta
110146
+ * [Api set: PowerPointApi 1.4]
110316
110147
  */
110317
110148
  mathMultiply = "MathMultiply",
110318
110149
  /**
110319
110150
  * Division Sign
110320
110151
  * @remarks
110321
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110322
- * @beta
110152
+ * [Api set: PowerPointApi 1.4]
110323
110153
  */
110324
110154
  mathDivide = "MathDivide",
110325
110155
  /**
110326
110156
  * Equals
110327
110157
  * @remarks
110328
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110329
- * @beta
110158
+ * [Api set: PowerPointApi 1.4]
110330
110159
  */
110331
110160
  mathEqual = "MathEqual",
110332
110161
  /**
110333
110162
  * Not Equal
110334
110163
  * @remarks
110335
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110336
- * @beta
110164
+ * [Api set: PowerPointApi 1.4]
110337
110165
  */
110338
110166
  mathNotEqual = "MathNotEqual",
110339
110167
  /**
110340
110168
  * Four Right Triangles that Define a Rectangular Shape
110341
110169
  * @remarks
110342
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110343
- * @beta
110170
+ * [Api set: PowerPointApi 1.4]
110344
110171
  */
110345
110172
  cornerTabs = "CornerTabs",
110346
110173
  /**
110347
110174
  * Four Small Squares that Define a Rectangular Shape.
110348
110175
  * @remarks
110349
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110350
- * @beta
110176
+ * [Api set: PowerPointApi 1.4]
110351
110177
  */
110352
110178
  squareTabs = "SquareTabs",
110353
110179
  /**
110354
110180
  * Four Quarter Circles that Define a Rectangular Shape.
110355
110181
  * @remarks
110356
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110357
- * @beta
110182
+ * [Api set: PowerPointApi 1.4]
110358
110183
  */
110359
110184
  plaqueTabs = "PlaqueTabs",
110360
110185
  /**
110361
110186
  * A Rectangle Divided into Four Parts Along Diagonal Lines.
110362
110187
  * @remarks
110363
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110364
- * @beta
110188
+ * [Api set: PowerPointApi 1.4]
110365
110189
  */
110366
110190
  chartX = "ChartX",
110367
110191
  /**
110368
110192
  * A Rectangle Divided into Six Parts Along a Vertical Line and Diagonal Lines.
110369
110193
  * @remarks
110370
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110371
- * @beta
110194
+ * [Api set: PowerPointApi 1.4]
110372
110195
  */
110373
110196
  chartStar = "ChartStar",
110374
110197
  /**
110375
110198
  * A Rectangle Divided Vertically and Horizontally into Four Quarters.
110376
110199
  * @remarks
110377
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110378
- * @beta
110200
+ * [Api set: PowerPointApi 1.4]
110379
110201
  */
110380
110202
  chartPlus = "ChartPlus",
110381
110203
  }
@@ -110438,57 +110260,49 @@ declare namespace PowerPoint {
110438
110260
  * Represents the horizontal alignment of the {@link PowerPoint.TextFrame} in a {@link PowerPoint.Shape}.
110439
110261
  *
110440
110262
  * @remarks
110441
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110442
- * @beta
110263
+ * [Api set: PowerPointApi 1.4]
110443
110264
  */
110444
110265
  enum ParagraphHorizontalAlignment {
110445
110266
  /**
110446
110267
  * Align text to the left margin.
110447
110268
  * @remarks
110448
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110449
- * @beta
110269
+ * [Api set: PowerPointApi 1.4]
110450
110270
  */
110451
110271
  left = "Left",
110452
110272
  /**
110453
110273
  * Align text in the center.
110454
110274
  * @remarks
110455
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110456
- * @beta
110275
+ * [Api set: PowerPointApi 1.4]
110457
110276
  */
110458
110277
  center = "Center",
110459
110278
  /**
110460
110279
  * Align text to the right margin.
110461
110280
  * @remarks
110462
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110463
- * @beta
110281
+ * [Api set: PowerPointApi 1.4]
110464
110282
  */
110465
110283
  right = "Right",
110466
110284
  /**
110467
110285
  * Align text so that it is justified across the whole line.
110468
110286
  * @remarks
110469
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110470
- * @beta
110287
+ * [Api set: PowerPointApi 1.4]
110471
110288
  */
110472
110289
  justify = "Justify",
110473
110290
  /**
110474
110291
  * Specifies the alignment or adjustment of kashida length in Arabic text.
110475
110292
  * @remarks
110476
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110477
- * @beta
110293
+ * [Api set: PowerPointApi 1.4]
110478
110294
  */
110479
110295
  justifyLow = "JustifyLow",
110480
110296
  /**
110481
110297
  * Distributes the text words across an entire text line.
110482
110298
  * @remarks
110483
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110484
- * @beta
110299
+ * [Api set: PowerPointApi 1.4]
110485
110300
  */
110486
110301
  distributed = "Distributed",
110487
110302
  /**
110488
110303
  * Distributes Thai text specially, because each character is treated as a word.
110489
110304
  * @remarks
110490
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110491
- * @beta
110305
+ * [Api set: PowerPointApi 1.4]
110492
110306
  */
110493
110307
  thaiDistributed = "ThaiDistributed",
110494
110308
  }
@@ -110496,8 +110310,7 @@ declare namespace PowerPoint {
110496
110310
  * Represents the paragraph formatting properties of a text that is attached to the {@link PowerPoint.TextRange}.
110497
110311
  *
110498
110312
  * @remarks
110499
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110500
- * @beta
110313
+ * [Api set: PowerPointApi 1.4]
110501
110314
  */
110502
110315
  class ParagraphFormat extends OfficeExtension.ClientObject {
110503
110316
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -110506,16 +110319,14 @@ declare namespace PowerPoint {
110506
110319
  * Represents the bullet format of the paragraph. See {@link PowerPoint.BulletFormat} for details.
110507
110320
  *
110508
110321
  * @remarks
110509
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110510
- * @beta
110322
+ * [Api set: PowerPointApi 1.4]
110511
110323
  */
110512
110324
  readonly bulletFormat: PowerPoint.BulletFormat;
110513
110325
  /**
110514
110326
  * Represents the horizontal alignment of the paragraph. Returns 'null' if the 'TextRange' includes text fragments with different horizontal alignment values. See {@link PowerPoint.ParagraphHorizontalAlignment} for details.
110515
110327
  *
110516
110328
  * @remarks
110517
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110518
- * @beta
110329
+ * [Api set: PowerPointApi 1.4]
110519
110330
  */
110520
110331
  horizontalAlignment: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed";
110521
110332
  /**
@@ -110549,8 +110360,7 @@ declare namespace PowerPoint {
110549
110360
  * Represents the available options when adding shapes.
110550
110361
  *
110551
110362
  * @remarks
110552
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110553
- * @beta
110363
+ * [Api set: PowerPointApi 1.4]
110554
110364
  */
110555
110365
  interface ShapeAddOptions {
110556
110366
  /**
@@ -110559,8 +110369,7 @@ declare namespace PowerPoint {
110559
110369
  Throws an `InvalidArgument` exception when set with a negative value.
110560
110370
  *
110561
110371
  * @remarks
110562
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110563
- * @beta
110372
+ * [Api set: PowerPointApi 1.4]
110564
110373
  */
110565
110374
  height?: number;
110566
110375
  /**
@@ -110568,8 +110377,7 @@ declare namespace PowerPoint {
110568
110377
  When not provided, a default value will be used.
110569
110378
  *
110570
110379
  * @remarks
110571
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110572
- * @beta
110380
+ * [Api set: PowerPointApi 1.4]
110573
110381
  */
110574
110382
  left?: number;
110575
110383
  /**
@@ -110577,8 +110385,7 @@ declare namespace PowerPoint {
110577
110385
  When not provided, a default value will be used.
110578
110386
  *
110579
110387
  * @remarks
110580
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110581
- * @beta
110388
+ * [Api set: PowerPointApi 1.4]
110582
110389
  */
110583
110390
  top?: number;
110584
110391
  /**
@@ -110587,8 +110394,7 @@ declare namespace PowerPoint {
110587
110394
  Throws an `InvalidArgument` exception when set with a negative value.
110588
110395
  *
110589
110396
  * @remarks
110590
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110591
- * @beta
110397
+ * [Api set: PowerPointApi 1.4]
110592
110398
  */
110593
110399
  width?: number;
110594
110400
  }
@@ -110607,8 +110413,7 @@ declare namespace PowerPoint {
110607
110413
  * Adds a geometric shape to the slide. Returns a `Shape` object that represents the new shape.
110608
110414
  *
110609
110415
  * @remarks
110610
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110611
- * @beta
110416
+ * [Api set: PowerPointApi 1.4]
110612
110417
  *
110613
110418
  * @param geometricShapeType Specifies the type of the geometric shape. See {@link PowerPoint.GeometricShapeType} for details.
110614
110419
  * @param options An optional parameter to specify the additional options such as the position of the shape.
@@ -110619,8 +110424,7 @@ declare namespace PowerPoint {
110619
110424
  * Adds a geometric shape to the slide. Returns a `Shape` object that represents the new shape.
110620
110425
  *
110621
110426
  * @remarks
110622
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110623
- * @beta
110427
+ * [Api set: PowerPointApi 1.4]
110624
110428
  *
110625
110429
  * @param geometricShapeType Specifies the type of the geometric shape. See {@link PowerPoint.GeometricShapeType} for details.
110626
110430
  * @param options An optional parameter to specify the additional options such as the position of the shape.
@@ -110631,8 +110435,7 @@ declare namespace PowerPoint {
110631
110435
  * Adds a line to the slide. Returns a `Shape` object that represents the new line.
110632
110436
  *
110633
110437
  * @remarks
110634
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110635
- * @beta
110438
+ * [Api set: PowerPointApi 1.4]
110636
110439
  *
110637
110440
  * @param connectorType Specifies the connector type of the line. If not provided, `straight` connector type will be used. See {@link PowerPoint.ConnectorType} for details.
110638
110441
  * @param options An optional parameter to specify the additional options such as the position of the shape object that contains the line.
@@ -110643,8 +110446,7 @@ declare namespace PowerPoint {
110643
110446
  * Adds a line to the slide. Returns a `Shape` object that represents the new line.
110644
110447
  *
110645
110448
  * @remarks
110646
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110647
- * @beta
110449
+ * [Api set: PowerPointApi 1.4]
110648
110450
  *
110649
110451
  * @param connectorType Specifies the connector type of the line. If not provided, `straight` connector type will be used. See {@link PowerPoint.ConnectorType} for details.
110650
110452
  * @param options An optional parameter to specify the additional options such as the position of the shape object that contains the line.
@@ -110655,8 +110457,7 @@ declare namespace PowerPoint {
110655
110457
  * Adds a text box to the slide with the provided text as the content. Returns a `Shape` object that represents the new text box.
110656
110458
  *
110657
110459
  * @remarks
110658
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
110659
- * @beta
110460
+ * [Api set: PowerPointApi 1.4]
110660
110461
  *
110661
110462
  * @param text Specifies the text that will be shown in the created text box.
110662
110463
  * @param options An optional parameter to specify the additional options such as the position of the text box.
@@ -111154,50 +110955,43 @@ declare namespace PowerPoint {
111154
110955
  * Specifies a shape's fill type.
111155
110956
  *
111156
110957
  * @remarks
111157
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111158
- * @beta
110958
+ * [Api set: PowerPointApi 1.4]
111159
110959
  */
111160
110960
  enum ShapeFillType {
111161
110961
  /**
111162
110962
  * Specifies that the shape should have no fill.
111163
110963
  * @remarks
111164
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111165
- * @beta
110964
+ * [Api set: PowerPointApi 1.4]
111166
110965
  */
111167
110966
  noFill = "NoFill",
111168
110967
  /**
111169
110968
  * Specifies that the shape should have regular solid fill.
111170
110969
  * @remarks
111171
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111172
- * @beta
110970
+ * [Api set: PowerPointApi 1.4]
111173
110971
  */
111174
110972
  solid = "Solid",
111175
110973
  /**
111176
110974
  * Specifies that the shape should have gradient fill.
111177
110975
  * @remarks
111178
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111179
- * @beta
110976
+ * [Api set: PowerPointApi 1.4]
111180
110977
  */
111181
110978
  gradient = "Gradient",
111182
110979
  /**
111183
110980
  * Specifies that the shape should have pattern fill.
111184
110981
  * @remarks
111185
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111186
- * @beta
110982
+ * [Api set: PowerPointApi 1.4]
111187
110983
  */
111188
110984
  pattern = "Pattern",
111189
110985
  /**
111190
110986
  * Specifies that the shape should have picture or texture fill.
111191
110987
  * @remarks
111192
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111193
- * @beta
110988
+ * [Api set: PowerPointApi 1.4]
111194
110989
  */
111195
110990
  pictureAndTexture = "PictureAndTexture",
111196
110991
  /**
111197
110992
  * Specifies that the shape should have slide background fill.
111198
110993
  * @remarks
111199
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111200
- * @beta
110994
+ * [Api set: PowerPointApi 1.4]
111201
110995
  */
111202
110996
  slideBackground = "SlideBackground",
111203
110997
  }
@@ -111205,8 +110999,7 @@ declare namespace PowerPoint {
111205
110999
  * Represents the fill formatting of a shape object.
111206
111000
  *
111207
111001
  * @remarks
111208
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111209
- * @beta
111002
+ * [Api set: PowerPointApi 1.4]
111210
111003
  */
111211
111004
  class ShapeFill extends OfficeExtension.ClientObject {
111212
111005
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -111215,40 +111008,35 @@ declare namespace PowerPoint {
111215
111008
  * Represents the shape fill foreground color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
111216
111009
  *
111217
111010
  * @remarks
111218
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111219
- * @beta
111011
+ * [Api set: PowerPointApi 1.4]
111220
111012
  */
111221
111013
  foregroundColor: string;
111222
111014
  /**
111223
111015
  * Specifies the transparency percentage of the fill as a value from 0.0 (opaque) through 1.0 (clear). Returns `null` if the shape type does not support transparency or the shape fill has inconsistent transparency, such as with a gradient fill type.
111224
111016
  *
111225
111017
  * @remarks
111226
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111227
- * @beta
111018
+ * [Api set: PowerPointApi 1.4]
111228
111019
  */
111229
111020
  transparency: number;
111230
111021
  /**
111231
111022
  * Returns the fill type of the shape. See {@link PowerPoint.ShapeFillType} for details.
111232
111023
  *
111233
111024
  * @remarks
111234
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111235
- * @beta
111025
+ * [Api set: PowerPointApi 1.4]
111236
111026
  */
111237
111027
  readonly type: PowerPoint.ShapeFillType | "NoFill" | "Solid" | "Gradient" | "Pattern" | "PictureAndTexture" | "SlideBackground";
111238
111028
  /**
111239
111029
  * Clears the fill formatting of this shape.
111240
111030
  *
111241
111031
  * @remarks
111242
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111243
- * @beta
111032
+ * [Api set: PowerPointApi 1.4]
111244
111033
  */
111245
111034
  clear(): void;
111246
111035
  /**
111247
111036
  * Sets the fill formatting of the shape to a uniform color. This changes the fill type to `Solid`.
111248
111037
  *
111249
111038
  * @remarks
111250
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111251
- * @beta
111039
+ * [Api set: PowerPointApi 1.4]
111252
111040
  *
111253
111041
  * @param color A string that specifies the fill color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
111254
111042
  */
@@ -111284,43 +111072,37 @@ declare namespace PowerPoint {
111284
111072
  * Specifies the style for a line.
111285
111073
  *
111286
111074
  * @remarks
111287
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111288
- * @beta
111075
+ * [Api set: PowerPointApi 1.4]
111289
111076
  */
111290
111077
  enum ShapeLineStyle {
111291
111078
  /**
111292
111079
  * Single line.
111293
111080
  * @remarks
111294
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111295
- * @beta
111081
+ * [Api set: PowerPointApi 1.4]
111296
111082
  */
111297
111083
  single = "Single",
111298
111084
  /**
111299
111085
  * Thick line with a thin line on each side.
111300
111086
  * @remarks
111301
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111302
- * @beta
111087
+ * [Api set: PowerPointApi 1.4]
111303
111088
  */
111304
111089
  thickBetweenThin = "ThickBetweenThin",
111305
111090
  /**
111306
111091
  * Thick line next to thin line. For horizontal lines, the thick line is above the thin line. For vertical lines, the thick line is to the left of the thin line.
111307
111092
  * @remarks
111308
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111309
- * @beta
111093
+ * [Api set: PowerPointApi 1.4]
111310
111094
  */
111311
111095
  thickThin = "ThickThin",
111312
111096
  /**
111313
111097
  * Thick line next to thin line. For horizontal lines, the thick line is below the thin line. For vertical lines, the thick line is to the right of the thin line.
111314
111098
  * @remarks
111315
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111316
- * @beta
111099
+ * [Api set: PowerPointApi 1.4]
111317
111100
  */
111318
111101
  thinThick = "ThinThick",
111319
111102
  /**
111320
111103
  * Two thin lines.
111321
111104
  * @remarks
111322
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111323
- * @beta
111105
+ * [Api set: PowerPointApi 1.4]
111324
111106
  */
111325
111107
  thinThin = "ThinThin",
111326
111108
  }
@@ -111328,92 +111110,79 @@ declare namespace PowerPoint {
111328
111110
  * Specifies the dash style for a line.
111329
111111
  *
111330
111112
  * @remarks
111331
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111332
- * @beta
111113
+ * [Api set: PowerPointApi 1.4]
111333
111114
  */
111334
111115
  enum ShapeLineDashStyle {
111335
111116
  /**
111336
111117
  * The dash line pattern
111337
111118
  * @remarks
111338
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111339
- * @beta
111119
+ * [Api set: PowerPointApi 1.4]
111340
111120
  */
111341
111121
  dash = "Dash",
111342
111122
  /**
111343
111123
  * The dash-dot line pattern
111344
111124
  * @remarks
111345
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111346
- * @beta
111125
+ * [Api set: PowerPointApi 1.4]
111347
111126
  */
111348
111127
  dashDot = "DashDot",
111349
111128
  /**
111350
111129
  * The dash-dot-dot line pattern
111351
111130
  * @remarks
111352
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111353
- * @beta
111131
+ * [Api set: PowerPointApi 1.4]
111354
111132
  */
111355
111133
  dashDotDot = "DashDotDot",
111356
111134
  /**
111357
111135
  * The long dash line pattern
111358
111136
  * @remarks
111359
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111360
- * @beta
111137
+ * [Api set: PowerPointApi 1.4]
111361
111138
  */
111362
111139
  longDash = "LongDash",
111363
111140
  /**
111364
111141
  * The long dash-dot line pattern
111365
111142
  * @remarks
111366
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111367
- * @beta
111143
+ * [Api set: PowerPointApi 1.4]
111368
111144
  */
111369
111145
  longDashDot = "LongDashDot",
111370
111146
  /**
111371
111147
  * The round dot line pattern
111372
111148
  * @remarks
111373
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111374
- * @beta
111149
+ * [Api set: PowerPointApi 1.4]
111375
111150
  */
111376
111151
  roundDot = "RoundDot",
111377
111152
  /**
111378
111153
  * The solid line pattern
111379
111154
  * @remarks
111380
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111381
- * @beta
111155
+ * [Api set: PowerPointApi 1.4]
111382
111156
  */
111383
111157
  solid = "Solid",
111384
111158
  /**
111385
111159
  * The square dot line pattern
111386
111160
  * @remarks
111387
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111388
- * @beta
111161
+ * [Api set: PowerPointApi 1.4]
111389
111162
  */
111390
111163
  squareDot = "SquareDot",
111391
111164
  /**
111392
111165
  * The long dash-dot-dot line pattern
111393
111166
  * @remarks
111394
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111395
- * @beta
111167
+ * [Api set: PowerPointApi 1.4]
111396
111168
  */
111397
111169
  longDashDotDot = "LongDashDotDot",
111398
111170
  /**
111399
111171
  * The system dash line pattern
111400
111172
  * @remarks
111401
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111402
- * @beta
111173
+ * [Api set: PowerPointApi 1.4]
111403
111174
  */
111404
111175
  systemDash = "SystemDash",
111405
111176
  /**
111406
111177
  * The system dot line pattern
111407
111178
  * @remarks
111408
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111409
- * @beta
111179
+ * [Api set: PowerPointApi 1.4]
111410
111180
  */
111411
111181
  systemDot = "SystemDot",
111412
111182
  /**
111413
111183
  * The system dash-dot line pattern
111414
111184
  * @remarks
111415
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111416
- * @beta
111185
+ * [Api set: PowerPointApi 1.4]
111417
111186
  */
111418
111187
  systemDashDot = "SystemDashDot",
111419
111188
  }
@@ -111421,8 +111190,7 @@ declare namespace PowerPoint {
111421
111190
  * Represents the line formatting for the shape object. For images and geometric shapes, line formatting represents the border of the shape.
111422
111191
  *
111423
111192
  * @remarks
111424
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111425
- * @beta
111193
+ * [Api set: PowerPointApi 1.4]
111426
111194
  */
111427
111195
  class ShapeLineFormat extends OfficeExtension.ClientObject {
111428
111196
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -111431,48 +111199,42 @@ declare namespace PowerPoint {
111431
111199
  * Represents the line color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
111432
111200
  *
111433
111201
  * @remarks
111434
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111435
- * @beta
111202
+ * [Api set: PowerPointApi 1.4]
111436
111203
  */
111437
111204
  color: string;
111438
111205
  /**
111439
111206
  * Represents the dash style of the line. Returns null when the line is not visible or there are inconsistent dash styles. See PowerPoint.ShapeLineDashStyle for details.
111440
111207
  *
111441
111208
  * @remarks
111442
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111443
- * @beta
111209
+ * [Api set: PowerPointApi 1.4]
111444
111210
  */
111445
111211
  dashStyle: PowerPoint.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot";
111446
111212
  /**
111447
111213
  * Represents the line style of the shape. Returns null when the line is not visible or there are inconsistent styles. See PowerPoint.ShapeLineStyle for details.
111448
111214
  *
111449
111215
  * @remarks
111450
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111451
- * @beta
111216
+ * [Api set: PowerPointApi 1.4]
111452
111217
  */
111453
111218
  style: PowerPoint.ShapeLineStyle | "Single" | "ThickBetweenThin" | "ThickThin" | "ThinThick" | "ThinThin";
111454
111219
  /**
111455
111220
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear). Returns null when the shape has inconsistent transparencies.
111456
111221
  *
111457
111222
  * @remarks
111458
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111459
- * @beta
111223
+ * [Api set: PowerPointApi 1.4]
111460
111224
  */
111461
111225
  transparency: number;
111462
111226
  /**
111463
111227
  * Specifies if the line formatting of a shape element is visible. Returns `null` when the shape has inconsistent visibilities.
111464
111228
  *
111465
111229
  * @remarks
111466
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111467
- * @beta
111230
+ * [Api set: PowerPointApi 1.4]
111468
111231
  */
111469
111232
  visible: boolean;
111470
111233
  /**
111471
111234
  * Represents the weight of the line, in points. Returns `null` when the line is not visible or there are inconsistent line weights.
111472
111235
  *
111473
111236
  * @remarks
111474
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111475
- * @beta
111237
+ * [Api set: PowerPointApi 1.4]
111476
111238
  */
111477
111239
  weight: number;
111478
111240
  /**
@@ -111506,43 +111268,37 @@ declare namespace PowerPoint {
111506
111268
  * Specifies the type of a shape.
111507
111269
  *
111508
111270
  * @remarks
111509
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111510
- * @beta
111271
+ * [Api set: PowerPointApi 1.4]
111511
111272
  */
111512
111273
  enum ShapeType {
111513
111274
  /**
111514
111275
  * The given shape's type is unsupported.
111515
111276
  * @remarks
111516
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111517
- * @beta
111277
+ * [Api set: PowerPointApi 1.4]
111518
111278
  */
111519
111279
  unsupported = "Unsupported",
111520
111280
  /**
111521
111281
  * The shape is an image
111522
111282
  * @remarks
111523
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111524
- * @beta
111283
+ * [Api set: PowerPointApi 1.4]
111525
111284
  */
111526
111285
  image = "Image",
111527
111286
  /**
111528
111287
  * The shape is a geometric shape such as rectangle
111529
111288
  * @remarks
111530
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111531
- * @beta
111289
+ * [Api set: PowerPointApi 1.4]
111532
111290
  */
111533
111291
  geometricShape = "GeometricShape",
111534
111292
  /**
111535
111293
  * The shape is a group shape which contains sub-shapes
111536
111294
  * @remarks
111537
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111538
- * @beta
111295
+ * [Api set: PowerPointApi 1.4]
111539
111296
  */
111540
111297
  group = "Group",
111541
111298
  /**
111542
- * The shape is a line.
111299
+ * The shape is a line
111543
111300
  * @remarks
111544
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111545
- * @beta
111301
+ * [Api set: PowerPointApi 1.4]
111546
111302
  */
111547
111303
  line = "Line",
111548
111304
  }
@@ -111550,36 +111306,31 @@ declare namespace PowerPoint {
111550
111306
  * Determines the type of automatic sizing allowed.
111551
111307
  *
111552
111308
  * @remarks
111553
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111554
- * @beta
111309
+ * [Api set: PowerPointApi 1.4]
111555
111310
  */
111556
111311
  enum ShapeAutoSize {
111557
111312
  /**
111558
111313
  * No autosizing.
111559
111314
  * @remarks
111560
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111561
- * @beta
111315
+ * [Api set: PowerPointApi 1.4]
111562
111316
  */
111563
111317
  autoSizeNone = "AutoSizeNone",
111564
111318
  /**
111565
111319
  * The text is adjusted to fit the shape.
111566
111320
  * @remarks
111567
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111568
- * @beta
111321
+ * [Api set: PowerPointApi 1.4]
111569
111322
  */
111570
111323
  autoSizeTextToFitShape = "AutoSizeTextToFitShape",
111571
111324
  /**
111572
111325
  * The shape is adjusted to fit the text.
111573
111326
  * @remarks
111574
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111575
- * @beta
111327
+ * [Api set: PowerPointApi 1.4]
111576
111328
  */
111577
111329
  autoSizeShapeToFitText = "AutoSizeShapeToFitText",
111578
111330
  /**
111579
111331
  * A combination of automatic sizing schemes are used.
111580
111332
  * @remarks
111581
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111582
- * @beta
111333
+ * [Api set: PowerPointApi 1.4]
111583
111334
  */
111584
111335
  autoSizeMixed = "AutoSizeMixed",
111585
111336
  }
@@ -111589,50 +111340,43 @@ declare namespace PowerPoint {
111589
111340
  To change the horizontal alignment of a text, see {@link PowerPoint.ParagraphFormat} and {@link PowerPoint.ParagraphHorizontalAlignment }.
111590
111341
  *
111591
111342
  * @remarks
111592
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111593
- * @beta
111343
+ * [Api set: PowerPointApi 1.4]
111594
111344
  */
111595
111345
  enum TextVerticalAlignment {
111596
111346
  /**
111597
111347
  * Specifies that the `TextFrame` should be top aligned to the `Shape`.
111598
111348
  * @remarks
111599
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111600
- * @beta
111349
+ * [Api set: PowerPointApi 1.4]
111601
111350
  */
111602
111351
  top = "Top",
111603
111352
  /**
111604
111353
  * Specifies that the `TextFrame` should be center aligned to the `Shape`.
111605
111354
  * @remarks
111606
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111607
- * @beta
111355
+ * [Api set: PowerPointApi 1.4]
111608
111356
  */
111609
111357
  middle = "Middle",
111610
111358
  /**
111611
111359
  * Specifies that the `TextFrame` should be bottom aligned to the `Shape`.
111612
111360
  * @remarks
111613
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111614
- * @beta
111361
+ * [Api set: PowerPointApi 1.4]
111615
111362
  */
111616
111363
  bottom = "Bottom",
111617
111364
  /**
111618
111365
  * Specifies that the `TextFrame` should be top aligned vertically to the `Shape`. Contents of the `TextFrame` will be centered horizontally within the `Shape`.
111619
111366
  * @remarks
111620
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111621
- * @beta
111367
+ * [Api set: PowerPointApi 1.4]
111622
111368
  */
111623
111369
  topCentered = "TopCentered",
111624
111370
  /**
111625
111371
  * Specifies that the `TextFrame` should be center aligned vertically to the `Shape`. Contents of the `TextFrame` will be centered horizontally within the `Shape`.
111626
111372
  * @remarks
111627
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111628
- * @beta
111373
+ * [Api set: PowerPointApi 1.4]
111629
111374
  */
111630
111375
  middleCentered = "MiddleCentered",
111631
111376
  /**
111632
111377
  * Specifies that the `TextFrame` should be bottom aligned vertically to the `Shape`. Contents of the `TextFrame` will be centered horizontally within the `Shape`.
111633
111378
  * @remarks
111634
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111635
- * @beta
111379
+ * [Api set: PowerPointApi 1.4]
111636
111380
  */
111637
111381
  bottomCentered = "BottomCentered",
111638
111382
  }
@@ -111640,127 +111384,109 @@ declare namespace PowerPoint {
111640
111384
  * The type of underline applied to a font.
111641
111385
  *
111642
111386
  * @remarks
111643
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111644
- * @beta
111387
+ * [Api set: PowerPointApi 1.4]
111645
111388
  */
111646
111389
  enum ShapeFontUnderlineStyle {
111647
111390
  /**
111648
111391
  * No underlining.
111649
111392
  * @remarks
111650
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111651
- * @beta
111393
+ * [Api set: PowerPointApi 1.4]
111652
111394
  */
111653
111395
  none = "None",
111654
111396
  /**
111655
111397
  * Regular single line underlining.
111656
111398
  * @remarks
111657
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111658
- * @beta
111399
+ * [Api set: PowerPointApi 1.4]
111659
111400
  */
111660
111401
  single = "Single",
111661
111402
  /**
111662
111403
  * Underlining of text with double lines.
111663
111404
  * @remarks
111664
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111665
- * @beta
111405
+ * [Api set: PowerPointApi 1.4]
111666
111406
  */
111667
111407
  double = "Double",
111668
111408
  /**
111669
111409
  * Underlining of text with a thick line.
111670
111410
  * @remarks
111671
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111672
- * @beta
111411
+ * [Api set: PowerPointApi 1.4]
111673
111412
  */
111674
111413
  heavy = "Heavy",
111675
111414
  /**
111676
111415
  * Underlining of text with a dotted line.
111677
111416
  * @remarks
111678
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111679
- * @beta
111417
+ * [Api set: PowerPointApi 1.4]
111680
111418
  */
111681
111419
  dotted = "Dotted",
111682
111420
  /**
111683
111421
  * Underlining of text with a thick, dotted line.
111684
111422
  * @remarks
111685
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111686
- * @beta
111423
+ * [Api set: PowerPointApi 1.4]
111687
111424
  */
111688
111425
  dottedHeavy = "DottedHeavy",
111689
111426
  /**
111690
111427
  * Underlining of text with a line containing dashes.
111691
111428
  * @remarks
111692
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111693
- * @beta
111429
+ * [Api set: PowerPointApi 1.4]
111694
111430
  */
111695
111431
  dash = "Dash",
111696
111432
  /**
111697
111433
  * Underlining of text with a thick line containing dashes.
111698
111434
  * @remarks
111699
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111700
- * @beta
111435
+ * [Api set: PowerPointApi 1.4]
111701
111436
  */
111702
111437
  dashHeavy = "DashHeavy",
111703
111438
  /**
111704
111439
  * Underlining of text with a line containing long dashes.
111705
111440
  * @remarks
111706
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111707
- * @beta
111441
+ * [Api set: PowerPointApi 1.4]
111708
111442
  */
111709
111443
  dashLong = "DashLong",
111710
111444
  /**
111711
111445
  * Underlining of text with a thick line containing long dashes.
111712
111446
  * @remarks
111713
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111714
- * @beta
111447
+ * [Api set: PowerPointApi 1.4]
111715
111448
  */
111716
111449
  dashLongHeavy = "DashLongHeavy",
111717
111450
  /**
111718
111451
  * Underlining of text with a line containing dots and dashes.
111719
111452
  * @remarks
111720
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111721
- * @beta
111453
+ * [Api set: PowerPointApi 1.4]
111722
111454
  */
111723
111455
  dotDash = "DotDash",
111724
111456
  /**
111725
111457
  * Underlining of text with a thick line containing dots and dashes.
111726
111458
  * @remarks
111727
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111728
- * @beta
111459
+ * [Api set: PowerPointApi 1.4]
111729
111460
  */
111730
111461
  dotDashHeavy = "DotDashHeavy",
111731
111462
  /**
111732
111463
  * Underlining of text with a line containing double dots and dashes.
111733
111464
  * @remarks
111734
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111735
- * @beta
111465
+ * [Api set: PowerPointApi 1.4]
111736
111466
  */
111737
111467
  dotDotDash = "DotDotDash",
111738
111468
  /**
111739
111469
  * Underlining of text with a thick line containing double dots and dashes.
111740
111470
  * @remarks
111741
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111742
- * @beta
111471
+ * [Api set: PowerPointApi 1.4]
111743
111472
  */
111744
111473
  dotDotDashHeavy = "DotDotDashHeavy",
111745
111474
  /**
111746
111475
  * Underlining of text with a wavy line.
111747
111476
  * @remarks
111748
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111749
- * @beta
111477
+ * [Api set: PowerPointApi 1.4]
111750
111478
  */
111751
111479
  wavy = "Wavy",
111752
111480
  /**
111753
111481
  * Underlining of text with a thick, wavy line.
111754
111482
  * @remarks
111755
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111756
- * @beta
111483
+ * [Api set: PowerPointApi 1.4]
111757
111484
  */
111758
111485
  wavyHeavy = "WavyHeavy",
111759
111486
  /**
111760
111487
  * Underlining of text with double wavy lines.
111761
111488
  * @remarks
111762
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111763
- * @beta
111489
+ * [Api set: PowerPointApi 1.4]
111764
111490
  */
111765
111491
  wavyDouble = "WavyDouble",
111766
111492
  }
@@ -111768,8 +111494,7 @@ declare namespace PowerPoint {
111768
111494
  * Represents the font attributes, such as font name, font size, and color, for a shape's TextRange object.
111769
111495
  *
111770
111496
  * @remarks
111771
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111772
- * @beta
111497
+ * [Api set: PowerPointApi 1.4]
111773
111498
  */
111774
111499
  class ShapeFont extends OfficeExtension.ClientObject {
111775
111500
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -111778,48 +111503,42 @@ declare namespace PowerPoint {
111778
111503
  * Represents the bold status of font. Returns `null` if the `TextRange` includes both bold and non-bold text fragments.
111779
111504
  *
111780
111505
  * @remarks
111781
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111782
- * @beta
111506
+ * [Api set: PowerPointApi 1.4]
111783
111507
  */
111784
111508
  bold: boolean;
111785
111509
  /**
111786
111510
  * HTML color code representation of the text color (e.g., "#FF0000" represents red). Returns `null` if the `TextRange` includes text fragments with different colors.
111787
111511
  *
111788
111512
  * @remarks
111789
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111790
- * @beta
111513
+ * [Api set: PowerPointApi 1.4]
111791
111514
  */
111792
111515
  color: string;
111793
111516
  /**
111794
111517
  * Represents the italic status of font. Returns 'null' if the 'TextRange' includes both italic and non-italic text fragments.
111795
111518
  *
111796
111519
  * @remarks
111797
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111798
- * @beta
111520
+ * [Api set: PowerPointApi 1.4]
111799
111521
  */
111800
111522
  italic: boolean;
111801
111523
  /**
111802
111524
  * Represents font name (e.g., "Calibri"). If the text is a Complex Script or East Asian language, this is the corresponding font name; otherwise it is the Latin font name.
111803
111525
  *
111804
111526
  * @remarks
111805
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111806
- * @beta
111527
+ * [Api set: PowerPointApi 1.4]
111807
111528
  */
111808
111529
  name: string;
111809
111530
  /**
111810
111531
  * Represents font size in points (e.g., 11). Returns null if the TextRange includes text fragments with different font sizes.
111811
111532
  *
111812
111533
  * @remarks
111813
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111814
- * @beta
111534
+ * [Api set: PowerPointApi 1.4]
111815
111535
  */
111816
111536
  size: number;
111817
111537
  /**
111818
111538
  * Type of underline applied to the font. Returns `null` if the `TextRange` includes text fragments with different underline styles. See {@link PowerPoint.ShapeFontUnderlineStyle} for details.
111819
111539
  *
111820
111540
  * @remarks
111821
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111822
- * @beta
111541
+ * [Api set: PowerPointApi 1.4]
111823
111542
  */
111824
111543
  underline: PowerPoint.ShapeFontUnderlineStyle | "None" | "Single" | "Double" | "Heavy" | "Dotted" | "DottedHeavy" | "Dash" | "DashHeavy" | "DashLong" | "DashLongHeavy" | "DotDash" | "DotDashHeavy" | "DotDotDash" | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble";
111825
111544
  /**
@@ -111853,8 +111572,7 @@ declare namespace PowerPoint {
111853
111572
  * Contains the text that is attached to a shape, in addition to properties and methods for manipulating the text.
111854
111573
  *
111855
111574
  * @remarks
111856
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111857
- * @beta
111575
+ * [Api set: PowerPointApi 1.4]
111858
111576
  */
111859
111577
  class TextRange extends OfficeExtension.ClientObject {
111860
111578
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -111863,16 +111581,14 @@ declare namespace PowerPoint {
111863
111581
  * Returns a `ShapeFont` object that represents the font attributes for the text range.
111864
111582
  *
111865
111583
  * @remarks
111866
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111867
- * @beta
111584
+ * [Api set: PowerPointApi 1.4]
111868
111585
  */
111869
111586
  readonly font: PowerPoint.ShapeFont;
111870
111587
  /**
111871
111588
  * Represents the paragraph format of the text range. See {@link PowerPoint.ParagraphFormat} for details.
111872
111589
  *
111873
111590
  * @remarks
111874
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111875
- * @beta
111591
+ * [Api set: PowerPointApi 1.4]
111876
111592
  */
111877
111593
  readonly paragraphFormat: PowerPoint.ParagraphFormat;
111878
111594
  /**
@@ -111897,8 +111613,7 @@ declare namespace PowerPoint {
111897
111613
  * Represents the plain text content of the text range.
111898
111614
  *
111899
111615
  * @remarks
111900
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111901
- * @beta
111616
+ * [Api set: PowerPointApi 1.4]
111902
111617
  */
111903
111618
  text: string;
111904
111619
  /**
@@ -111913,8 +111628,7 @@ declare namespace PowerPoint {
111913
111628
  * Returns a `TextRange` object for the substring in the given range.
111914
111629
  *
111915
111630
  * @remarks
111916
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111917
- * @beta
111631
+ * [Api set: PowerPointApi 1.4]
111918
111632
  *
111919
111633
  * @param start The zero-based index of the first character to get from the text range.
111920
111634
  * @param length Optional. The number of characters to be returned in the new text range. If length is omitted, all the characters from start to the end of the text range's last paragraph will be returned.
@@ -111959,8 +111673,7 @@ declare namespace PowerPoint {
111959
111673
  * Represents the text frame of a shape object.
111960
111674
  *
111961
111675
  * @remarks
111962
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111963
- * @beta
111676
+ * [Api set: PowerPointApi 1.4]
111964
111677
  */
111965
111678
  class TextFrame extends OfficeExtension.ClientObject {
111966
111679
  /** The request context associated with the object. This connects the add-in's process to the Office host application's process. */
@@ -111969,80 +111682,70 @@ declare namespace PowerPoint {
111969
111682
  * Represents the text that is attached to a shape in the text frame, and properties and methods for manipulating the text. See {@link PowerPoint.TextRange} for details.
111970
111683
  *
111971
111684
  * @remarks
111972
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111973
- * @beta
111685
+ * [Api set: PowerPointApi 1.4]
111974
111686
  */
111975
111687
  readonly textRange: PowerPoint.TextRange;
111976
111688
  /**
111977
111689
  * The automatic sizing settings for the text frame. A text frame can be set to automatically fit the text to the text frame, to automatically fit the text frame to the text, or not perform any automatic sizing.
111978
111690
  *
111979
111691
  * @remarks
111980
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111981
- * @beta
111692
+ * [Api set: PowerPointApi 1.4]
111982
111693
  */
111983
111694
  autoSizeSetting: PowerPoint.ShapeAutoSize | "AutoSizeNone" | "AutoSizeTextToFitShape" | "AutoSizeShapeToFitText" | "AutoSizeMixed";
111984
111695
  /**
111985
111696
  * Represents the bottom margin, in points, of the text frame.
111986
111697
  *
111987
111698
  * @remarks
111988
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111989
- * @beta
111699
+ * [Api set: PowerPointApi 1.4]
111990
111700
  */
111991
111701
  bottomMargin: number;
111992
111702
  /**
111993
111703
  * Specifies if the text frame contains text.
111994
111704
  *
111995
111705
  * @remarks
111996
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
111997
- * @beta
111706
+ * [Api set: PowerPointApi 1.4]
111998
111707
  */
111999
111708
  readonly hasText: boolean;
112000
111709
  /**
112001
111710
  * Represents the left margin, in points, of the text frame.
112002
111711
  *
112003
111712
  * @remarks
112004
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112005
- * @beta
111713
+ * [Api set: PowerPointApi 1.4]
112006
111714
  */
112007
111715
  leftMargin: number;
112008
111716
  /**
112009
111717
  * Represents the right margin, in points, of the text frame.
112010
111718
  *
112011
111719
  * @remarks
112012
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112013
- * @beta
111720
+ * [Api set: PowerPointApi 1.4]
112014
111721
  */
112015
111722
  rightMargin: number;
112016
111723
  /**
112017
111724
  * Represents the top margin, in points, of the text frame.
112018
111725
  *
112019
111726
  * @remarks
112020
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112021
- * @beta
111727
+ * [Api set: PowerPointApi 1.4]
112022
111728
  */
112023
111729
  topMargin: number;
112024
111730
  /**
112025
111731
  * Represents the vertical alignment of the text frame. See {@link PowerPoint.TextVerticalAlignment} for details.
112026
111732
  *
112027
111733
  * @remarks
112028
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112029
- * @beta
111734
+ * [Api set: PowerPointApi 1.4]
112030
111735
  */
112031
111736
  verticalAlignment: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
112032
111737
  /**
112033
111738
  * Determines whether lines break automatically to fit text inside the shape.
112034
111739
  *
112035
111740
  * @remarks
112036
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112037
- * @beta
111741
+ * [Api set: PowerPointApi 1.4]
112038
111742
  */
112039
111743
  wordWrap: boolean;
112040
111744
  /**
112041
111745
  * Deletes all the text in the text frame.
112042
111746
  *
112043
111747
  * @remarks
112044
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112045
- * @beta
111748
+ * [Api set: PowerPointApi 1.4]
112046
111749
  */
112047
111750
  deleteText(): void;
112048
111751
  /**
@@ -112093,16 +111796,14 @@ declare namespace PowerPoint {
112093
111796
  * Returns the fill formatting of this shape.
112094
111797
  *
112095
111798
  * @remarks
112096
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112097
- * @beta
111799
+ * [Api set: PowerPointApi 1.4]
112098
111800
  */
112099
111801
  readonly fill: PowerPoint.ShapeFill;
112100
111802
  /**
112101
111803
  * Returns the line formatting of this shape.
112102
111804
  *
112103
111805
  * @remarks
112104
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112105
- * @beta
111806
+ * [Api set: PowerPointApi 1.4]
112106
111807
  */
112107
111808
  readonly lineFormat: PowerPoint.ShapeLineFormat;
112108
111809
  /**
@@ -112116,16 +111817,14 @@ declare namespace PowerPoint {
112116
111817
  * Returns the text frame object of this shape.
112117
111818
  *
112118
111819
  * @remarks
112119
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112120
- * @beta
111820
+ * [Api set: PowerPointApi 1.4]
112121
111821
  */
112122
111822
  readonly textFrame: PowerPoint.TextFrame;
112123
111823
  /**
112124
111824
  * Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
112125
111825
  *
112126
111826
  * @remarks
112127
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112128
- * @beta
111827
+ * [Api set: PowerPointApi 1.4]
112129
111828
  */
112130
111829
  height: number;
112131
111830
  /**
@@ -112139,40 +111838,35 @@ declare namespace PowerPoint {
112139
111838
  * The distance, in points, from the left side of the shape to the left side of the slide.
112140
111839
  *
112141
111840
  * @remarks
112142
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112143
- * @beta
111841
+ * [Api set: PowerPointApi 1.4]
112144
111842
  */
112145
111843
  left: number;
112146
111844
  /**
112147
111845
  * Specifies the name of this shape.
112148
111846
  *
112149
111847
  * @remarks
112150
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112151
- * @beta
111848
+ * [Api set: PowerPointApi 1.4]
112152
111849
  */
112153
111850
  name: string;
112154
111851
  /**
112155
111852
  * The distance, in points, from the top edge of the shape to the top edge of the slide.
112156
111853
  *
112157
111854
  * @remarks
112158
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112159
- * @beta
111855
+ * [Api set: PowerPointApi 1.4]
112160
111856
  */
112161
111857
  top: number;
112162
111858
  /**
112163
111859
  * Returns the type of this shape. See {@link PowerPoint.ShapeType} for details.
112164
111860
  *
112165
111861
  * @remarks
112166
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112167
- * @beta
111862
+ * [Api set: PowerPointApi 1.4]
112168
111863
  */
112169
111864
  readonly type: PowerPoint.ShapeType | "Unsupported" | "Image" | "GeometricShape" | "Group" | "Line";
112170
111865
  /**
112171
111866
  * Specifies the width, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
112172
111867
  *
112173
111868
  * @remarks
112174
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112175
- * @beta
111869
+ * [Api set: PowerPointApi 1.4]
112176
111870
  */
112177
111871
  width: number;
112178
111872
  /**
@@ -112597,8 +112291,7 @@ declare namespace PowerPoint {
112597
112291
  * Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
112598
112292
  *
112599
112293
  * @remarks
112600
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112601
- * @beta
112294
+ * [Api set: PowerPointApi 1.4]
112602
112295
  */
112603
112296
  visible?: boolean;
112604
112297
  }
@@ -112608,8 +112301,7 @@ declare namespace PowerPoint {
112608
112301
  * Represents the horizontal alignment of the paragraph. Returns 'null' if the 'TextRange' includes text fragments with different horizontal alignment values. See {@link PowerPoint.ParagraphHorizontalAlignment} for details.
112609
112302
  *
112610
112303
  * @remarks
112611
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112612
- * @beta
112304
+ * [Api set: PowerPointApi 1.4]
112613
112305
  */
112614
112306
  horizontalAlignment?: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed";
112615
112307
  }
@@ -112641,16 +112333,14 @@ declare namespace PowerPoint {
112641
112333
  * Represents the shape fill foreground color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
112642
112334
  *
112643
112335
  * @remarks
112644
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112645
- * @beta
112336
+ * [Api set: PowerPointApi 1.4]
112646
112337
  */
112647
112338
  foregroundColor?: string;
112648
112339
  /**
112649
112340
  * Specifies the transparency percentage of the fill as a value from 0.0 (opaque) through 1.0 (clear). Returns `null` if the shape type does not support transparency or the shape fill has inconsistent transparency, such as with a gradient fill type.
112650
112341
  *
112651
112342
  * @remarks
112652
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112653
- * @beta
112343
+ * [Api set: PowerPointApi 1.4]
112654
112344
  */
112655
112345
  transparency?: number;
112656
112346
  }
@@ -112660,48 +112350,42 @@ declare namespace PowerPoint {
112660
112350
  * Represents the line color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
112661
112351
  *
112662
112352
  * @remarks
112663
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112664
- * @beta
112353
+ * [Api set: PowerPointApi 1.4]
112665
112354
  */
112666
112355
  color?: string;
112667
112356
  /**
112668
112357
  * Represents the dash style of the line. Returns null when the line is not visible or there are inconsistent dash styles. See PowerPoint.ShapeLineDashStyle for details.
112669
112358
  *
112670
112359
  * @remarks
112671
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112672
- * @beta
112360
+ * [Api set: PowerPointApi 1.4]
112673
112361
  */
112674
112362
  dashStyle?: PowerPoint.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot";
112675
112363
  /**
112676
112364
  * Represents the line style of the shape. Returns null when the line is not visible or there are inconsistent styles. See PowerPoint.ShapeLineStyle for details.
112677
112365
  *
112678
112366
  * @remarks
112679
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112680
- * @beta
112367
+ * [Api set: PowerPointApi 1.4]
112681
112368
  */
112682
112369
  style?: PowerPoint.ShapeLineStyle | "Single" | "ThickBetweenThin" | "ThickThin" | "ThinThick" | "ThinThin";
112683
112370
  /**
112684
112371
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear). Returns null when the shape has inconsistent transparencies.
112685
112372
  *
112686
112373
  * @remarks
112687
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112688
- * @beta
112374
+ * [Api set: PowerPointApi 1.4]
112689
112375
  */
112690
112376
  transparency?: number;
112691
112377
  /**
112692
112378
  * Specifies if the line formatting of a shape element is visible. Returns `null` when the shape has inconsistent visibilities.
112693
112379
  *
112694
112380
  * @remarks
112695
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112696
- * @beta
112381
+ * [Api set: PowerPointApi 1.4]
112697
112382
  */
112698
112383
  visible?: boolean;
112699
112384
  /**
112700
112385
  * Represents the weight of the line, in points. Returns `null` when the line is not visible or there are inconsistent line weights.
112701
112386
  *
112702
112387
  * @remarks
112703
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112704
- * @beta
112388
+ * [Api set: PowerPointApi 1.4]
112705
112389
  */
112706
112390
  weight?: number;
112707
112391
  }
@@ -112711,48 +112395,42 @@ declare namespace PowerPoint {
112711
112395
  * Represents the bold status of font. Returns `null` if the `TextRange` includes both bold and non-bold text fragments.
112712
112396
  *
112713
112397
  * @remarks
112714
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112715
- * @beta
112398
+ * [Api set: PowerPointApi 1.4]
112716
112399
  */
112717
112400
  bold?: boolean;
112718
112401
  /**
112719
112402
  * HTML color code representation of the text color (e.g., "#FF0000" represents red). Returns `null` if the `TextRange` includes text fragments with different colors.
112720
112403
  *
112721
112404
  * @remarks
112722
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112723
- * @beta
112405
+ * [Api set: PowerPointApi 1.4]
112724
112406
  */
112725
112407
  color?: string;
112726
112408
  /**
112727
112409
  * Represents the italic status of font. Returns 'null' if the 'TextRange' includes both italic and non-italic text fragments.
112728
112410
  *
112729
112411
  * @remarks
112730
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112731
- * @beta
112412
+ * [Api set: PowerPointApi 1.4]
112732
112413
  */
112733
112414
  italic?: boolean;
112734
112415
  /**
112735
112416
  * Represents font name (e.g., "Calibri"). If the text is a Complex Script or East Asian language, this is the corresponding font name; otherwise it is the Latin font name.
112736
112417
  *
112737
112418
  * @remarks
112738
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112739
- * @beta
112419
+ * [Api set: PowerPointApi 1.4]
112740
112420
  */
112741
112421
  name?: string;
112742
112422
  /**
112743
112423
  * Represents font size in points (e.g., 11). Returns null if the TextRange includes text fragments with different font sizes.
112744
112424
  *
112745
112425
  * @remarks
112746
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112747
- * @beta
112426
+ * [Api set: PowerPointApi 1.4]
112748
112427
  */
112749
112428
  size?: number;
112750
112429
  /**
112751
112430
  * Type of underline applied to the font. Returns `null` if the `TextRange` includes text fragments with different underline styles. See {@link PowerPoint.ShapeFontUnderlineStyle} for details.
112752
112431
  *
112753
112432
  * @remarks
112754
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112755
- * @beta
112433
+ * [Api set: PowerPointApi 1.4]
112756
112434
  */
112757
112435
  underline?: PowerPoint.ShapeFontUnderlineStyle | "None" | "Single" | "Double" | "Heavy" | "Dotted" | "DottedHeavy" | "Dash" | "DashHeavy" | "DashLong" | "DashLongHeavy" | "DotDash" | "DotDashHeavy" | "DotDotDash" | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble";
112758
112436
  }
@@ -112780,8 +112458,7 @@ declare namespace PowerPoint {
112780
112458
  * Represents the plain text content of the text range.
112781
112459
  *
112782
112460
  * @remarks
112783
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112784
- * @beta
112461
+ * [Api set: PowerPointApi 1.4]
112785
112462
  */
112786
112463
  text?: string;
112787
112464
  }
@@ -112791,56 +112468,49 @@ declare namespace PowerPoint {
112791
112468
  * The automatic sizing settings for the text frame. A text frame can be set to automatically fit the text to the text frame, to automatically fit the text frame to the text, or not perform any automatic sizing.
112792
112469
  *
112793
112470
  * @remarks
112794
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112795
- * @beta
112471
+ * [Api set: PowerPointApi 1.4]
112796
112472
  */
112797
112473
  autoSizeSetting?: PowerPoint.ShapeAutoSize | "AutoSizeNone" | "AutoSizeTextToFitShape" | "AutoSizeShapeToFitText" | "AutoSizeMixed";
112798
112474
  /**
112799
112475
  * Represents the bottom margin, in points, of the text frame.
112800
112476
  *
112801
112477
  * @remarks
112802
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112803
- * @beta
112478
+ * [Api set: PowerPointApi 1.4]
112804
112479
  */
112805
112480
  bottomMargin?: number;
112806
112481
  /**
112807
112482
  * Represents the left margin, in points, of the text frame.
112808
112483
  *
112809
112484
  * @remarks
112810
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112811
- * @beta
112485
+ * [Api set: PowerPointApi 1.4]
112812
112486
  */
112813
112487
  leftMargin?: number;
112814
112488
  /**
112815
112489
  * Represents the right margin, in points, of the text frame.
112816
112490
  *
112817
112491
  * @remarks
112818
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112819
- * @beta
112492
+ * [Api set: PowerPointApi 1.4]
112820
112493
  */
112821
112494
  rightMargin?: number;
112822
112495
  /**
112823
112496
  * Represents the top margin, in points, of the text frame.
112824
112497
  *
112825
112498
  * @remarks
112826
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112827
- * @beta
112499
+ * [Api set: PowerPointApi 1.4]
112828
112500
  */
112829
112501
  topMargin?: number;
112830
112502
  /**
112831
112503
  * Represents the vertical alignment of the text frame. See {@link PowerPoint.TextVerticalAlignment} for details.
112832
112504
  *
112833
112505
  * @remarks
112834
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112835
- * @beta
112506
+ * [Api set: PowerPointApi 1.4]
112836
112507
  */
112837
112508
  verticalAlignment?: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
112838
112509
  /**
112839
112510
  * Determines whether lines break automatically to fit text inside the shape.
112840
112511
  *
112841
112512
  * @remarks
112842
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112843
- * @beta
112513
+ * [Api set: PowerPointApi 1.4]
112844
112514
  */
112845
112515
  wordWrap?: boolean;
112846
112516
  }
@@ -112850,40 +112520,35 @@ declare namespace PowerPoint {
112850
112520
  * Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
112851
112521
  *
112852
112522
  * @remarks
112853
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112854
- * @beta
112523
+ * [Api set: PowerPointApi 1.4]
112855
112524
  */
112856
112525
  height?: number;
112857
112526
  /**
112858
112527
  * The distance, in points, from the left side of the shape to the left side of the slide.
112859
112528
  *
112860
112529
  * @remarks
112861
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112862
- * @beta
112530
+ * [Api set: PowerPointApi 1.4]
112863
112531
  */
112864
112532
  left?: number;
112865
112533
  /**
112866
112534
  * Specifies the name of this shape.
112867
112535
  *
112868
112536
  * @remarks
112869
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112870
- * @beta
112537
+ * [Api set: PowerPointApi 1.4]
112871
112538
  */
112872
112539
  name?: string;
112873
112540
  /**
112874
112541
  * The distance, in points, from the top edge of the shape to the top edge of the slide.
112875
112542
  *
112876
112543
  * @remarks
112877
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112878
- * @beta
112544
+ * [Api set: PowerPointApi 1.4]
112879
112545
  */
112880
112546
  top?: number;
112881
112547
  /**
112882
112548
  * Specifies the width, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
112883
112549
  *
112884
112550
  * @remarks
112885
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112886
- * @beta
112551
+ * [Api set: PowerPointApi 1.4]
112887
112552
  */
112888
112553
  width?: number;
112889
112554
  }
@@ -112913,8 +112578,7 @@ declare namespace PowerPoint {
112913
112578
  * Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
112914
112579
  *
112915
112580
  * @remarks
112916
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112917
- * @beta
112581
+ * [Api set: PowerPointApi 1.4]
112918
112582
  */
112919
112583
  visible?: boolean;
112920
112584
  }
@@ -112924,8 +112588,7 @@ declare namespace PowerPoint {
112924
112588
  * Represents the horizontal alignment of the paragraph. Returns 'null' if the 'TextRange' includes text fragments with different horizontal alignment values. See {@link PowerPoint.ParagraphHorizontalAlignment} for details.
112925
112589
  *
112926
112590
  * @remarks
112927
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
112928
- * @beta
112591
+ * [Api set: PowerPointApi 1.4]
112929
112592
  */
112930
112593
  horizontalAlignment?: PowerPoint.ParagraphHorizontalAlignment | "Left" | "Center" | "Right" | "Justify" | "JustifyLow" | "Distributed" | "ThaiDistributed";
112931
112594
  }
@@ -113008,24 +112671,21 @@ declare namespace PowerPoint {
113008
112671
  * Represents the shape fill foreground color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
113009
112672
  *
113010
112673
  * @remarks
113011
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113012
- * @beta
112674
+ * [Api set: PowerPointApi 1.4]
113013
112675
  */
113014
112676
  foregroundColor?: string;
113015
112677
  /**
113016
112678
  * Specifies the transparency percentage of the fill as a value from 0.0 (opaque) through 1.0 (clear). Returns `null` if the shape type does not support transparency or the shape fill has inconsistent transparency, such as with a gradient fill type.
113017
112679
  *
113018
112680
  * @remarks
113019
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113020
- * @beta
112681
+ * [Api set: PowerPointApi 1.4]
113021
112682
  */
113022
112683
  transparency?: number;
113023
112684
  /**
113024
112685
  * Returns the fill type of the shape. See {@link PowerPoint.ShapeFillType} for details.
113025
112686
  *
113026
112687
  * @remarks
113027
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113028
- * @beta
112688
+ * [Api set: PowerPointApi 1.4]
113029
112689
  */
113030
112690
  type?: PowerPoint.ShapeFillType | "NoFill" | "Solid" | "Gradient" | "Pattern" | "PictureAndTexture" | "SlideBackground";
113031
112691
  }
@@ -113035,48 +112695,42 @@ declare namespace PowerPoint {
113035
112695
  * Represents the line color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
113036
112696
  *
113037
112697
  * @remarks
113038
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113039
- * @beta
112698
+ * [Api set: PowerPointApi 1.4]
113040
112699
  */
113041
112700
  color?: string;
113042
112701
  /**
113043
112702
  * Represents the dash style of the line. Returns null when the line is not visible or there are inconsistent dash styles. See PowerPoint.ShapeLineDashStyle for details.
113044
112703
  *
113045
112704
  * @remarks
113046
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113047
- * @beta
112705
+ * [Api set: PowerPointApi 1.4]
113048
112706
  */
113049
112707
  dashStyle?: PowerPoint.ShapeLineDashStyle | "Dash" | "DashDot" | "DashDotDot" | "LongDash" | "LongDashDot" | "RoundDot" | "Solid" | "SquareDot" | "LongDashDotDot" | "SystemDash" | "SystemDot" | "SystemDashDot";
113050
112708
  /**
113051
112709
  * Represents the line style of the shape. Returns null when the line is not visible or there are inconsistent styles. See PowerPoint.ShapeLineStyle for details.
113052
112710
  *
113053
112711
  * @remarks
113054
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113055
- * @beta
112712
+ * [Api set: PowerPointApi 1.4]
113056
112713
  */
113057
112714
  style?: PowerPoint.ShapeLineStyle | "Single" | "ThickBetweenThin" | "ThickThin" | "ThinThick" | "ThinThin";
113058
112715
  /**
113059
112716
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear). Returns null when the shape has inconsistent transparencies.
113060
112717
  *
113061
112718
  * @remarks
113062
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113063
- * @beta
112719
+ * [Api set: PowerPointApi 1.4]
113064
112720
  */
113065
112721
  transparency?: number;
113066
112722
  /**
113067
112723
  * Specifies if the line formatting of a shape element is visible. Returns `null` when the shape has inconsistent visibilities.
113068
112724
  *
113069
112725
  * @remarks
113070
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113071
- * @beta
112726
+ * [Api set: PowerPointApi 1.4]
113072
112727
  */
113073
112728
  visible?: boolean;
113074
112729
  /**
113075
112730
  * Represents the weight of the line, in points. Returns `null` when the line is not visible or there are inconsistent line weights.
113076
112731
  *
113077
112732
  * @remarks
113078
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113079
- * @beta
112733
+ * [Api set: PowerPointApi 1.4]
113080
112734
  */
113081
112735
  weight?: number;
113082
112736
  }
@@ -113086,48 +112740,42 @@ declare namespace PowerPoint {
113086
112740
  * Represents the bold status of font. Returns `null` if the `TextRange` includes both bold and non-bold text fragments.
113087
112741
  *
113088
112742
  * @remarks
113089
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113090
- * @beta
112743
+ * [Api set: PowerPointApi 1.4]
113091
112744
  */
113092
112745
  bold?: boolean;
113093
112746
  /**
113094
112747
  * HTML color code representation of the text color (e.g., "#FF0000" represents red). Returns `null` if the `TextRange` includes text fragments with different colors.
113095
112748
  *
113096
112749
  * @remarks
113097
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113098
- * @beta
112750
+ * [Api set: PowerPointApi 1.4]
113099
112751
  */
113100
112752
  color?: string;
113101
112753
  /**
113102
112754
  * Represents the italic status of font. Returns 'null' if the 'TextRange' includes both italic and non-italic text fragments.
113103
112755
  *
113104
112756
  * @remarks
113105
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113106
- * @beta
112757
+ * [Api set: PowerPointApi 1.4]
113107
112758
  */
113108
112759
  italic?: boolean;
113109
112760
  /**
113110
112761
  * Represents font name (e.g., "Calibri"). If the text is a Complex Script or East Asian language, this is the corresponding font name; otherwise it is the Latin font name.
113111
112762
  *
113112
112763
  * @remarks
113113
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113114
- * @beta
112764
+ * [Api set: PowerPointApi 1.4]
113115
112765
  */
113116
112766
  name?: string;
113117
112767
  /**
113118
112768
  * Represents font size in points (e.g., 11). Returns null if the TextRange includes text fragments with different font sizes.
113119
112769
  *
113120
112770
  * @remarks
113121
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113122
- * @beta
112771
+ * [Api set: PowerPointApi 1.4]
113123
112772
  */
113124
112773
  size?: number;
113125
112774
  /**
113126
112775
  * Type of underline applied to the font. Returns `null` if the `TextRange` includes text fragments with different underline styles. See {@link PowerPoint.ShapeFontUnderlineStyle} for details.
113127
112776
  *
113128
112777
  * @remarks
113129
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113130
- * @beta
112778
+ * [Api set: PowerPointApi 1.4]
113131
112779
  */
113132
112780
  underline?: PowerPoint.ShapeFontUnderlineStyle | "None" | "Single" | "Double" | "Heavy" | "Dotted" | "DottedHeavy" | "Dash" | "DashHeavy" | "DashLong" | "DashLongHeavy" | "DotDash" | "DotDashHeavy" | "DotDotDash" | "DotDotDashHeavy" | "Wavy" | "WavyHeavy" | "WavyDouble";
113133
112781
  }
@@ -113155,8 +112803,7 @@ declare namespace PowerPoint {
113155
112803
  * Represents the plain text content of the text range.
113156
112804
  *
113157
112805
  * @remarks
113158
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113159
- * @beta
112806
+ * [Api set: PowerPointApi 1.4]
113160
112807
  */
113161
112808
  text?: string;
113162
112809
  }
@@ -113166,64 +112813,56 @@ declare namespace PowerPoint {
113166
112813
  * The automatic sizing settings for the text frame. A text frame can be set to automatically fit the text to the text frame, to automatically fit the text frame to the text, or not perform any automatic sizing.
113167
112814
  *
113168
112815
  * @remarks
113169
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113170
- * @beta
112816
+ * [Api set: PowerPointApi 1.4]
113171
112817
  */
113172
112818
  autoSizeSetting?: PowerPoint.ShapeAutoSize | "AutoSizeNone" | "AutoSizeTextToFitShape" | "AutoSizeShapeToFitText" | "AutoSizeMixed";
113173
112819
  /**
113174
112820
  * Represents the bottom margin, in points, of the text frame.
113175
112821
  *
113176
112822
  * @remarks
113177
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113178
- * @beta
112823
+ * [Api set: PowerPointApi 1.4]
113179
112824
  */
113180
112825
  bottomMargin?: number;
113181
112826
  /**
113182
112827
  * Specifies if the text frame contains text.
113183
112828
  *
113184
112829
  * @remarks
113185
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113186
- * @beta
112830
+ * [Api set: PowerPointApi 1.4]
113187
112831
  */
113188
112832
  hasText?: boolean;
113189
112833
  /**
113190
112834
  * Represents the left margin, in points, of the text frame.
113191
112835
  *
113192
112836
  * @remarks
113193
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113194
- * @beta
112837
+ * [Api set: PowerPointApi 1.4]
113195
112838
  */
113196
112839
  leftMargin?: number;
113197
112840
  /**
113198
112841
  * Represents the right margin, in points, of the text frame.
113199
112842
  *
113200
112843
  * @remarks
113201
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113202
- * @beta
112844
+ * [Api set: PowerPointApi 1.4]
113203
112845
  */
113204
112846
  rightMargin?: number;
113205
112847
  /**
113206
112848
  * Represents the top margin, in points, of the text frame.
113207
112849
  *
113208
112850
  * @remarks
113209
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113210
- * @beta
112851
+ * [Api set: PowerPointApi 1.4]
113211
112852
  */
113212
112853
  topMargin?: number;
113213
112854
  /**
113214
112855
  * Represents the vertical alignment of the text frame. See {@link PowerPoint.TextVerticalAlignment} for details.
113215
112856
  *
113216
112857
  * @remarks
113217
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113218
- * @beta
112858
+ * [Api set: PowerPointApi 1.4]
113219
112859
  */
113220
112860
  verticalAlignment?: PowerPoint.TextVerticalAlignment | "Top" | "Middle" | "Bottom" | "TopCentered" | "MiddleCentered" | "BottomCentered";
113221
112861
  /**
113222
112862
  * Determines whether lines break automatically to fit text inside the shape.
113223
112863
  *
113224
112864
  * @remarks
113225
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113226
- * @beta
112865
+ * [Api set: PowerPointApi 1.4]
113227
112866
  */
113228
112867
  wordWrap?: boolean;
113229
112868
  }
@@ -113233,8 +112872,7 @@ declare namespace PowerPoint {
113233
112872
  * Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
113234
112873
  *
113235
112874
  * @remarks
113236
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113237
- * @beta
112875
+ * [Api set: PowerPointApi 1.4]
113238
112876
  */
113239
112877
  height?: number;
113240
112878
  /**
@@ -113248,40 +112886,35 @@ declare namespace PowerPoint {
113248
112886
  * The distance, in points, from the left side of the shape to the left side of the slide.
113249
112887
  *
113250
112888
  * @remarks
113251
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113252
- * @beta
112889
+ * [Api set: PowerPointApi 1.4]
113253
112890
  */
113254
112891
  left?: number;
113255
112892
  /**
113256
112893
  * Specifies the name of this shape.
113257
112894
  *
113258
112895
  * @remarks
113259
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113260
- * @beta
112896
+ * [Api set: PowerPointApi 1.4]
113261
112897
  */
113262
112898
  name?: string;
113263
112899
  /**
113264
112900
  * The distance, in points, from the top edge of the shape to the top edge of the slide.
113265
112901
  *
113266
112902
  * @remarks
113267
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113268
- * @beta
112903
+ * [Api set: PowerPointApi 1.4]
113269
112904
  */
113270
112905
  top?: number;
113271
112906
  /**
113272
112907
  * Returns the type of this shape. See {@link PowerPoint.ShapeType} for details.
113273
112908
  *
113274
112909
  * @remarks
113275
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113276
- * @beta
112910
+ * [Api set: PowerPointApi 1.4]
113277
112911
  */
113278
112912
  type?: PowerPoint.ShapeType | "Unsupported" | "Image" | "GeometricShape" | "Group" | "Line";
113279
112913
  /**
113280
112914
  * Specifies the width, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
113281
112915
  *
113282
112916
  * @remarks
113283
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113284
- * @beta
112917
+ * [Api set: PowerPointApi 1.4]
113285
112918
  */
113286
112919
  width?: number;
113287
112920
  }
@@ -113303,7 +112936,7 @@ declare namespace PowerPoint {
113303
112936
  }
113304
112937
  /**
113305
112938
  * @remarks
113306
- * [Api set: PowerPointApi 1.1]
112939
+ * [Api set: PowerPointApi 1.0]
113307
112940
  */
113308
112941
  interface PresentationLoadOptions {
113309
112942
  /**
@@ -113316,8 +112949,7 @@ declare namespace PowerPoint {
113316
112949
  * Represents the bullet formatting properties of a text that is attached to the {@link PowerPoint.ParagraphFormat}.
113317
112950
  *
113318
112951
  * @remarks
113319
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113320
- * @beta
112952
+ * [Api set: PowerPointApi 1.4]
113321
112953
  */
113322
112954
  interface BulletFormatLoadOptions {
113323
112955
  /**
@@ -113328,8 +112960,7 @@ declare namespace PowerPoint {
113328
112960
  * Specifies if the bullets in the paragraph are visible. Returns 'null' if the 'TextRange' includes text fragments with different bullet visibility values.
113329
112961
  *
113330
112962
  * @remarks
113331
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113332
- * @beta
112963
+ * [Api set: PowerPointApi 1.4]
113333
112964
  */
113334
112965
  visible?: boolean;
113335
112966
  }
@@ -113337,8 +112968,7 @@ declare namespace PowerPoint {
113337
112968
  * Represents the paragraph formatting properties of a text that is attached to the {@link PowerPoint.TextRange}.
113338
112969
  *
113339
112970
  * @remarks
113340
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113341
- * @beta
112971
+ * [Api set: PowerPointApi 1.4]
113342
112972
  */
113343
112973
  interface ParagraphFormatLoadOptions {
113344
112974
  /**
@@ -113349,16 +112979,14 @@ declare namespace PowerPoint {
113349
112979
  * Represents the bullet format of the paragraph. See {@link PowerPoint.BulletFormat} for details.
113350
112980
  *
113351
112981
  * @remarks
113352
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113353
- * @beta
112982
+ * [Api set: PowerPointApi 1.4]
113354
112983
  */
113355
112984
  bulletFormat?: PowerPoint.Interfaces.BulletFormatLoadOptions;
113356
112985
  /**
113357
112986
  * Represents the horizontal alignment of the paragraph. Returns 'null' if the 'TextRange' includes text fragments with different horizontal alignment values. See {@link PowerPoint.ParagraphHorizontalAlignment} for details.
113358
112987
  *
113359
112988
  * @remarks
113360
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113361
- * @beta
112989
+ * [Api set: PowerPointApi 1.4]
113362
112990
  */
113363
112991
  horizontalAlignment?: boolean;
113364
112992
  }
@@ -113377,32 +113005,28 @@ declare namespace PowerPoint {
113377
113005
  * For EACH ITEM in the collection: Returns the fill formatting of this shape.
113378
113006
  *
113379
113007
  * @remarks
113380
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113381
- * @beta
113008
+ * [Api set: PowerPointApi 1.4]
113382
113009
  */
113383
113010
  fill?: PowerPoint.Interfaces.ShapeFillLoadOptions;
113384
113011
  /**
113385
113012
  * For EACH ITEM in the collection: Returns the line formatting of this shape.
113386
113013
  *
113387
113014
  * @remarks
113388
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113389
- * @beta
113015
+ * [Api set: PowerPointApi 1.4]
113390
113016
  */
113391
113017
  lineFormat?: PowerPoint.Interfaces.ShapeLineFormatLoadOptions;
113392
113018
  /**
113393
113019
  * For EACH ITEM in the collection: Returns the text frame object of this shape.
113394
113020
  *
113395
113021
  * @remarks
113396
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113397
- * @beta
113022
+ * [Api set: PowerPointApi 1.4]
113398
113023
  */
113399
113024
  textFrame?: PowerPoint.Interfaces.TextFrameLoadOptions;
113400
113025
  /**
113401
113026
  * For EACH ITEM in the collection: Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
113402
113027
  *
113403
113028
  * @remarks
113404
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113405
- * @beta
113029
+ * [Api set: PowerPointApi 1.4]
113406
113030
  */
113407
113031
  height?: boolean;
113408
113032
  /**
@@ -113416,40 +113040,35 @@ declare namespace PowerPoint {
113416
113040
  * For EACH ITEM in the collection: The distance, in points, from the left side of the shape to the left side of the slide.
113417
113041
  *
113418
113042
  * @remarks
113419
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113420
- * @beta
113043
+ * [Api set: PowerPointApi 1.4]
113421
113044
  */
113422
113045
  left?: boolean;
113423
113046
  /**
113424
113047
  * For EACH ITEM in the collection: Specifies the name of this shape.
113425
113048
  *
113426
113049
  * @remarks
113427
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113428
- * @beta
113050
+ * [Api set: PowerPointApi 1.4]
113429
113051
  */
113430
113052
  name?: boolean;
113431
113053
  /**
113432
113054
  * For EACH ITEM in the collection: The distance, in points, from the top edge of the shape to the top edge of the slide.
113433
113055
  *
113434
113056
  * @remarks
113435
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113436
- * @beta
113057
+ * [Api set: PowerPointApi 1.4]
113437
113058
  */
113438
113059
  top?: boolean;
113439
113060
  /**
113440
113061
  * For EACH ITEM in the collection: Returns the type of this shape. See {@link PowerPoint.ShapeType} for details.
113441
113062
  *
113442
113063
  * @remarks
113443
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113444
- * @beta
113064
+ * [Api set: PowerPointApi 1.4]
113445
113065
  */
113446
113066
  type?: boolean;
113447
113067
  /**
113448
113068
  * For EACH ITEM in the collection: Specifies the width, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
113449
113069
  *
113450
113070
  * @remarks
113451
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113452
- * @beta
113071
+ * [Api set: PowerPointApi 1.4]
113453
113072
  */
113454
113073
  width?: boolean;
113455
113074
  }
@@ -113620,8 +113239,7 @@ declare namespace PowerPoint {
113620
113239
  * Represents the fill formatting of a shape object.
113621
113240
  *
113622
113241
  * @remarks
113623
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113624
- * @beta
113242
+ * [Api set: PowerPointApi 1.4]
113625
113243
  */
113626
113244
  interface ShapeFillLoadOptions {
113627
113245
  /**
@@ -113632,24 +113250,21 @@ declare namespace PowerPoint {
113632
113250
  * Represents the shape fill foreground color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
113633
113251
  *
113634
113252
  * @remarks
113635
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113636
- * @beta
113253
+ * [Api set: PowerPointApi 1.4]
113637
113254
  */
113638
113255
  foregroundColor?: boolean;
113639
113256
  /**
113640
113257
  * Specifies the transparency percentage of the fill as a value from 0.0 (opaque) through 1.0 (clear). Returns `null` if the shape type does not support transparency or the shape fill has inconsistent transparency, such as with a gradient fill type.
113641
113258
  *
113642
113259
  * @remarks
113643
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113644
- * @beta
113260
+ * [Api set: PowerPointApi 1.4]
113645
113261
  */
113646
113262
  transparency?: boolean;
113647
113263
  /**
113648
113264
  * Returns the fill type of the shape. See {@link PowerPoint.ShapeFillType} for details.
113649
113265
  *
113650
113266
  * @remarks
113651
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113652
- * @beta
113267
+ * [Api set: PowerPointApi 1.4]
113653
113268
  */
113654
113269
  type?: boolean;
113655
113270
  }
@@ -113657,8 +113272,7 @@ declare namespace PowerPoint {
113657
113272
  * Represents the line formatting for the shape object. For images and geometric shapes, line formatting represents the border of the shape.
113658
113273
  *
113659
113274
  * @remarks
113660
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113661
- * @beta
113275
+ * [Api set: PowerPointApi 1.4]
113662
113276
  */
113663
113277
  interface ShapeLineFormatLoadOptions {
113664
113278
  /**
@@ -113669,48 +113283,42 @@ declare namespace PowerPoint {
113669
113283
  * Represents the line color in HTML color format, in the form #RRGGBB (e.g., "FFA500") or as a named HTML color (e.g., "orange").
113670
113284
  *
113671
113285
  * @remarks
113672
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113673
- * @beta
113286
+ * [Api set: PowerPointApi 1.4]
113674
113287
  */
113675
113288
  color?: boolean;
113676
113289
  /**
113677
113290
  * Represents the dash style of the line. Returns null when the line is not visible or there are inconsistent dash styles. See PowerPoint.ShapeLineDashStyle for details.
113678
113291
  *
113679
113292
  * @remarks
113680
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113681
- * @beta
113293
+ * [Api set: PowerPointApi 1.4]
113682
113294
  */
113683
113295
  dashStyle?: boolean;
113684
113296
  /**
113685
113297
  * Represents the line style of the shape. Returns null when the line is not visible or there are inconsistent styles. See PowerPoint.ShapeLineStyle for details.
113686
113298
  *
113687
113299
  * @remarks
113688
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113689
- * @beta
113300
+ * [Api set: PowerPointApi 1.4]
113690
113301
  */
113691
113302
  style?: boolean;
113692
113303
  /**
113693
113304
  * Specifies the transparency percentage of the line as a value from 0.0 (opaque) through 1.0 (clear). Returns null when the shape has inconsistent transparencies.
113694
113305
  *
113695
113306
  * @remarks
113696
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113697
- * @beta
113307
+ * [Api set: PowerPointApi 1.4]
113698
113308
  */
113699
113309
  transparency?: boolean;
113700
113310
  /**
113701
113311
  * Specifies if the line formatting of a shape element is visible. Returns `null` when the shape has inconsistent visibilities.
113702
113312
  *
113703
113313
  * @remarks
113704
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113705
- * @beta
113314
+ * [Api set: PowerPointApi 1.4]
113706
113315
  */
113707
113316
  visible?: boolean;
113708
113317
  /**
113709
113318
  * Represents the weight of the line, in points. Returns `null` when the line is not visible or there are inconsistent line weights.
113710
113319
  *
113711
113320
  * @remarks
113712
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113713
- * @beta
113321
+ * [Api set: PowerPointApi 1.4]
113714
113322
  */
113715
113323
  weight?: boolean;
113716
113324
  }
@@ -113718,8 +113326,7 @@ declare namespace PowerPoint {
113718
113326
  * Represents the font attributes, such as font name, font size, and color, for a shape's TextRange object.
113719
113327
  *
113720
113328
  * @remarks
113721
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113722
- * @beta
113329
+ * [Api set: PowerPointApi 1.4]
113723
113330
  */
113724
113331
  interface ShapeFontLoadOptions {
113725
113332
  /**
@@ -113730,48 +113337,42 @@ declare namespace PowerPoint {
113730
113337
  * Represents the bold status of font. Returns `null` if the `TextRange` includes both bold and non-bold text fragments.
113731
113338
  *
113732
113339
  * @remarks
113733
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113734
- * @beta
113340
+ * [Api set: PowerPointApi 1.4]
113735
113341
  */
113736
113342
  bold?: boolean;
113737
113343
  /**
113738
113344
  * HTML color code representation of the text color (e.g., "#FF0000" represents red). Returns `null` if the `TextRange` includes text fragments with different colors.
113739
113345
  *
113740
113346
  * @remarks
113741
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113742
- * @beta
113347
+ * [Api set: PowerPointApi 1.4]
113743
113348
  */
113744
113349
  color?: boolean;
113745
113350
  /**
113746
113351
  * Represents the italic status of font. Returns 'null' if the 'TextRange' includes both italic and non-italic text fragments.
113747
113352
  *
113748
113353
  * @remarks
113749
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113750
- * @beta
113354
+ * [Api set: PowerPointApi 1.4]
113751
113355
  */
113752
113356
  italic?: boolean;
113753
113357
  /**
113754
113358
  * Represents font name (e.g., "Calibri"). If the text is a Complex Script or East Asian language, this is the corresponding font name; otherwise it is the Latin font name.
113755
113359
  *
113756
113360
  * @remarks
113757
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113758
- * @beta
113361
+ * [Api set: PowerPointApi 1.4]
113759
113362
  */
113760
113363
  name?: boolean;
113761
113364
  /**
113762
113365
  * Represents font size in points (e.g., 11). Returns null if the TextRange includes text fragments with different font sizes.
113763
113366
  *
113764
113367
  * @remarks
113765
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113766
- * @beta
113368
+ * [Api set: PowerPointApi 1.4]
113767
113369
  */
113768
113370
  size?: boolean;
113769
113371
  /**
113770
113372
  * Type of underline applied to the font. Returns `null` if the `TextRange` includes text fragments with different underline styles. See {@link PowerPoint.ShapeFontUnderlineStyle} for details.
113771
113373
  *
113772
113374
  * @remarks
113773
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113774
- * @beta
113375
+ * [Api set: PowerPointApi 1.4]
113775
113376
  */
113776
113377
  underline?: boolean;
113777
113378
  }
@@ -113779,8 +113380,7 @@ declare namespace PowerPoint {
113779
113380
  * Contains the text that is attached to a shape, in addition to properties and methods for manipulating the text.
113780
113381
  *
113781
113382
  * @remarks
113782
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113783
- * @beta
113383
+ * [Api set: PowerPointApi 1.4]
113784
113384
  */
113785
113385
  interface TextRangeLoadOptions {
113786
113386
  /**
@@ -113791,16 +113391,14 @@ declare namespace PowerPoint {
113791
113391
  * Returns a `ShapeFont` object that represents the font attributes for the text range.
113792
113392
  *
113793
113393
  * @remarks
113794
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113795
- * @beta
113394
+ * [Api set: PowerPointApi 1.4]
113796
113395
  */
113797
113396
  font?: PowerPoint.Interfaces.ShapeFontLoadOptions;
113798
113397
  /**
113799
113398
  * Represents the paragraph format of the text range. See {@link PowerPoint.ParagraphFormat} for details.
113800
113399
  *
113801
113400
  * @remarks
113802
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113803
- * @beta
113401
+ * [Api set: PowerPointApi 1.4]
113804
113402
  */
113805
113403
  paragraphFormat?: PowerPoint.Interfaces.ParagraphFormatLoadOptions;
113806
113404
  /**
@@ -113825,8 +113423,7 @@ declare namespace PowerPoint {
113825
113423
  * Represents the plain text content of the text range.
113826
113424
  *
113827
113425
  * @remarks
113828
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113829
- * @beta
113426
+ * [Api set: PowerPointApi 1.4]
113830
113427
  */
113831
113428
  text?: boolean;
113832
113429
  }
@@ -113834,8 +113431,7 @@ declare namespace PowerPoint {
113834
113431
  * Represents the text frame of a shape object.
113835
113432
  *
113836
113433
  * @remarks
113837
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113838
- * @beta
113434
+ * [Api set: PowerPointApi 1.4]
113839
113435
  */
113840
113436
  interface TextFrameLoadOptions {
113841
113437
  /**
@@ -113846,72 +113442,63 @@ declare namespace PowerPoint {
113846
113442
  * Represents the text that is attached to a shape in the text frame, and properties and methods for manipulating the text. See {@link PowerPoint.TextRange} for details.
113847
113443
  *
113848
113444
  * @remarks
113849
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113850
- * @beta
113445
+ * [Api set: PowerPointApi 1.4]
113851
113446
  */
113852
113447
  textRange?: PowerPoint.Interfaces.TextRangeLoadOptions;
113853
113448
  /**
113854
113449
  * The automatic sizing settings for the text frame. A text frame can be set to automatically fit the text to the text frame, to automatically fit the text frame to the text, or not perform any automatic sizing.
113855
113450
  *
113856
113451
  * @remarks
113857
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113858
- * @beta
113452
+ * [Api set: PowerPointApi 1.4]
113859
113453
  */
113860
113454
  autoSizeSetting?: boolean;
113861
113455
  /**
113862
113456
  * Represents the bottom margin, in points, of the text frame.
113863
113457
  *
113864
113458
  * @remarks
113865
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113866
- * @beta
113459
+ * [Api set: PowerPointApi 1.4]
113867
113460
  */
113868
113461
  bottomMargin?: boolean;
113869
113462
  /**
113870
113463
  * Specifies if the text frame contains text.
113871
113464
  *
113872
113465
  * @remarks
113873
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113874
- * @beta
113466
+ * [Api set: PowerPointApi 1.4]
113875
113467
  */
113876
113468
  hasText?: boolean;
113877
113469
  /**
113878
113470
  * Represents the left margin, in points, of the text frame.
113879
113471
  *
113880
113472
  * @remarks
113881
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113882
- * @beta
113473
+ * [Api set: PowerPointApi 1.4]
113883
113474
  */
113884
113475
  leftMargin?: boolean;
113885
113476
  /**
113886
113477
  * Represents the right margin, in points, of the text frame.
113887
113478
  *
113888
113479
  * @remarks
113889
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113890
- * @beta
113480
+ * [Api set: PowerPointApi 1.4]
113891
113481
  */
113892
113482
  rightMargin?: boolean;
113893
113483
  /**
113894
113484
  * Represents the top margin, in points, of the text frame.
113895
113485
  *
113896
113486
  * @remarks
113897
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113898
- * @beta
113487
+ * [Api set: PowerPointApi 1.4]
113899
113488
  */
113900
113489
  topMargin?: boolean;
113901
113490
  /**
113902
113491
  * Represents the vertical alignment of the text frame. See {@link PowerPoint.TextVerticalAlignment} for details.
113903
113492
  *
113904
113493
  * @remarks
113905
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113906
- * @beta
113494
+ * [Api set: PowerPointApi 1.4]
113907
113495
  */
113908
113496
  verticalAlignment?: boolean;
113909
113497
  /**
113910
113498
  * Determines whether lines break automatically to fit text inside the shape.
113911
113499
  *
113912
113500
  * @remarks
113913
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113914
- * @beta
113501
+ * [Api set: PowerPointApi 1.4]
113915
113502
  */
113916
113503
  wordWrap?: boolean;
113917
113504
  }
@@ -113930,32 +113517,28 @@ declare namespace PowerPoint {
113930
113517
  * Returns the fill formatting of this shape.
113931
113518
  *
113932
113519
  * @remarks
113933
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113934
- * @beta
113520
+ * [Api set: PowerPointApi 1.4]
113935
113521
  */
113936
113522
  fill?: PowerPoint.Interfaces.ShapeFillLoadOptions;
113937
113523
  /**
113938
113524
  * Returns the line formatting of this shape.
113939
113525
  *
113940
113526
  * @remarks
113941
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113942
- * @beta
113527
+ * [Api set: PowerPointApi 1.4]
113943
113528
  */
113944
113529
  lineFormat?: PowerPoint.Interfaces.ShapeLineFormatLoadOptions;
113945
113530
  /**
113946
113531
  * Returns the text frame object of this shape.
113947
113532
  *
113948
113533
  * @remarks
113949
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113950
- * @beta
113534
+ * [Api set: PowerPointApi 1.4]
113951
113535
  */
113952
113536
  textFrame?: PowerPoint.Interfaces.TextFrameLoadOptions;
113953
113537
  /**
113954
113538
  * Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
113955
113539
  *
113956
113540
  * @remarks
113957
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113958
- * @beta
113541
+ * [Api set: PowerPointApi 1.4]
113959
113542
  */
113960
113543
  height?: boolean;
113961
113544
  /**
@@ -113969,40 +113552,35 @@ declare namespace PowerPoint {
113969
113552
  * The distance, in points, from the left side of the shape to the left side of the slide.
113970
113553
  *
113971
113554
  * @remarks
113972
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113973
- * @beta
113555
+ * [Api set: PowerPointApi 1.4]
113974
113556
  */
113975
113557
  left?: boolean;
113976
113558
  /**
113977
113559
  * Specifies the name of this shape.
113978
113560
  *
113979
113561
  * @remarks
113980
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113981
- * @beta
113562
+ * [Api set: PowerPointApi 1.4]
113982
113563
  */
113983
113564
  name?: boolean;
113984
113565
  /**
113985
113566
  * The distance, in points, from the top edge of the shape to the top edge of the slide.
113986
113567
  *
113987
113568
  * @remarks
113988
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113989
- * @beta
113569
+ * [Api set: PowerPointApi 1.4]
113990
113570
  */
113991
113571
  top?: boolean;
113992
113572
  /**
113993
113573
  * Returns the type of this shape. See {@link PowerPoint.ShapeType} for details.
113994
113574
  *
113995
113575
  * @remarks
113996
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
113997
- * @beta
113576
+ * [Api set: PowerPointApi 1.4]
113998
113577
  */
113999
113578
  type?: boolean;
114000
113579
  /**
114001
113580
  * Specifies the width, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
114002
113581
  *
114003
113582
  * @remarks
114004
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114005
- * @beta
113583
+ * [Api set: PowerPointApi 1.4]
114006
113584
  */
114007
113585
  width?: boolean;
114008
113586
  }
@@ -114022,32 +113600,28 @@ declare namespace PowerPoint {
114022
113600
  * For EACH ITEM in the collection: Returns the fill formatting of this shape.
114023
113601
  *
114024
113602
  * @remarks
114025
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114026
- * @beta
113603
+ * [Api set: PowerPointApi 1.4]
114027
113604
  */
114028
113605
  fill?: PowerPoint.Interfaces.ShapeFillLoadOptions;
114029
113606
  /**
114030
113607
  * For EACH ITEM in the collection: Returns the line formatting of this shape.
114031
113608
  *
114032
113609
  * @remarks
114033
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114034
- * @beta
113610
+ * [Api set: PowerPointApi 1.4]
114035
113611
  */
114036
113612
  lineFormat?: PowerPoint.Interfaces.ShapeLineFormatLoadOptions;
114037
113613
  /**
114038
113614
  * For EACH ITEM in the collection: Returns the text frame object of this shape.
114039
113615
  *
114040
113616
  * @remarks
114041
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114042
- * @beta
113617
+ * [Api set: PowerPointApi 1.4]
114043
113618
  */
114044
113619
  textFrame?: PowerPoint.Interfaces.TextFrameLoadOptions;
114045
113620
  /**
114046
113621
  * For EACH ITEM in the collection: Specifies the height, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
114047
113622
  *
114048
113623
  * @remarks
114049
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114050
- * @beta
113624
+ * [Api set: PowerPointApi 1.4]
114051
113625
  */
114052
113626
  height?: boolean;
114053
113627
  /**
@@ -114061,40 +113635,35 @@ declare namespace PowerPoint {
114061
113635
  * For EACH ITEM in the collection: The distance, in points, from the left side of the shape to the left side of the slide.
114062
113636
  *
114063
113637
  * @remarks
114064
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114065
- * @beta
113638
+ * [Api set: PowerPointApi 1.4]
114066
113639
  */
114067
113640
  left?: boolean;
114068
113641
  /**
114069
113642
  * For EACH ITEM in the collection: Specifies the name of this shape.
114070
113643
  *
114071
113644
  * @remarks
114072
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114073
- * @beta
113645
+ * [Api set: PowerPointApi 1.4]
114074
113646
  */
114075
113647
  name?: boolean;
114076
113648
  /**
114077
113649
  * For EACH ITEM in the collection: The distance, in points, from the top edge of the shape to the top edge of the slide.
114078
113650
  *
114079
113651
  * @remarks
114080
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114081
- * @beta
113652
+ * [Api set: PowerPointApi 1.4]
114082
113653
  */
114083
113654
  top?: boolean;
114084
113655
  /**
114085
113656
  * For EACH ITEM in the collection: Returns the type of this shape. See {@link PowerPoint.ShapeType} for details.
114086
113657
  *
114087
113658
  * @remarks
114088
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114089
- * @beta
113659
+ * [Api set: PowerPointApi 1.4]
114090
113660
  */
114091
113661
  type?: boolean;
114092
113662
  /**
114093
113663
  * For EACH ITEM in the collection: Specifies the width, in points, of the shape. Throws an `InvalidArgument` exception when set with a negative value.
114094
113664
  *
114095
113665
  * @remarks
114096
- * [Api set: PowerPointApi BETA (PREVIEW ONLY)]
114097
- * @beta
113666
+ * [Api set: PowerPointApi 1.4]
114098
113667
  */
114099
113668
  width?: boolean;
114100
113669
  }