asposeslidescloud 22.3.0 → 22.7.0

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.
package/model.d.ts CHANGED
@@ -1,3 +1,40 @@
1
+ /**
2
+ * A set of properties specifying which access permissions should be granted when the document is opened with user access.
3
+ */
4
+ export declare class AccessPermissions {
5
+ /**
6
+ * The user may print the document (possibly not at the highest quality level, depending on whether bit HighQualityPrint is also set).
7
+ */
8
+ printDocument: boolean;
9
+ /**
10
+ * The user may modify the contents of the document by operations other than those controlled by bits AddOrModifyFields, FillExistingFields, AssembleDocument.
11
+ */
12
+ modifyContent: boolean;
13
+ /**
14
+ * The user may copy or otherwise extract text and graphics from the document by operations other than that controlled by bit ExtractTextAndGraphics.
15
+ */
16
+ copyTextAndGraphics: boolean;
17
+ /**
18
+ * The user may add or modify text annotations, fill in interactive form fields, and, if bit ModifyContent is also set, create or modify interactive form fields (including signature fields).
19
+ */
20
+ addOrModifyFields: boolean;
21
+ /**
22
+ * The user may fill in existing interactive form fields (including signature fields), even if bit AddOrModifyFields is clear.
23
+ */
24
+ fillExistingFields: boolean;
25
+ /**
26
+ * The user may extract text and graphics in support of accessibility to users with disabilities or for other purposes.
27
+ */
28
+ extractTextAndGraphics: boolean;
29
+ /**
30
+ * The user may assemble the document (insert, rotate, or delete pages and create bookmarks or thumbnail images), even if bit ModifyContent is clear.
31
+ */
32
+ assembleDocument: boolean;
33
+ /**
34
+ * The user may print the document to a representation from which a faithful digital copy of the PDF content could be generated. When this bit is clear (and bit PrintDocument is set), printing is limited to a low-level representation of the appearance, possibly of degraded quality.
35
+ */
36
+ highQualityPrint: boolean;
37
+ }
1
38
  /**
2
39
  * Represents response for ApiInfo DTO
3
40
  */
@@ -295,6 +332,18 @@ export declare namespace Axis {
295
332
  None
296
333
  }
297
334
  }
335
+ /**
336
+ * Defines axis type.
337
+ */
338
+ /**
339
+ * Defines axis type.
340
+ */
341
+ export declare enum AxisType {
342
+ 'HorizontalAxis',
343
+ 'VerticalAxis',
344
+ 'SecondaryHorizontalAxis',
345
+ 'SecondaryVerticalAxis'
346
+ }
298
347
  /**
299
348
  * Represents blur effect
300
349
  */
@@ -450,6 +499,143 @@ export declare class ChartLinesFormat {
450
499
  */
451
500
  lineFormat?: LineFormat;
452
501
  }
502
+ /**
503
+ * Chart series group. Defines common properties for a group of series.
504
+ */
505
+ export declare class ChartSeriesGroup {
506
+ /**
507
+ * Returns a type of this series group.
508
+ */
509
+ type?: ChartSeriesGroup.TypeEnum;
510
+ /**
511
+ * Specifies the space between bar or column clusters, as a percentage of the bar or column width.
512
+ */
513
+ gapWidth?: number;
514
+ /**
515
+ * Returns or sets the distance, as a percentage of the marker width, between the data series in a 3D chart.
516
+ */
517
+ gapDepth?: number;
518
+ /**
519
+ * Gets or sets the angle of the first pie or doughnut chart slice, in degrees (clockwise from up, from 0 to 360 degrees).
520
+ */
521
+ firstSliceAngle?: number;
522
+ /**
523
+ * Specifies that each data marker in the series has a different color.
524
+ */
525
+ isColorVaried?: boolean;
526
+ /**
527
+ * True if chart has series lines. Applied to stacked bar and OfPie charts.
528
+ */
529
+ hasSeriesLines?: boolean;
530
+ /**
531
+ * Specifies how much bars and columns shall overlap on 2-D charts (from -100 to 100).
532
+ */
533
+ overlap?: number;
534
+ /**
535
+ * Specifies the size of the second pie or bar of a pie-of-pie chart or a bar-of-pie chart, as a percentage of the size of the first pie (can be between 5 and 200 percents).
536
+ */
537
+ secondPieSize?: number;
538
+ /**
539
+ * Specifies a value that shall be used to determine which data points are in the second pie or bar on a pie-of-pie or bar-of-pie chart. Is used together with PieSplitBy property.
540
+ */
541
+ pieSplitPosition?: number;
542
+ /**
543
+ * Specifies how to determine which data points are in the second pie or bar on a pie-of-pie or bar-of-pie chart.
544
+ */
545
+ pieSplitBy?: ChartSeriesGroup.PieSplitByEnum;
546
+ /**
547
+ * Specifies the size of the hole in a doughnut chart (can be between 10 and 90 percents of the size of the plot area.).
548
+ */
549
+ doughnutHoleSize?: number;
550
+ /**
551
+ * Specifies the scale factor for the bubble chart (can be between 0 and 300 percents of the default size). Read/write Int32.
552
+ */
553
+ bubbleSizeScale?: number;
554
+ /**
555
+ * Specifies HiLowLines format. HiLowLines applied with HiLowClose, OpenHiLowClose, VolumeHiLowClose and VolumeOpenHiLowClose chart types.
556
+ */
557
+ hiLowLinesFormat?: ChartLinesFormat;
558
+ /**
559
+ * Specifies how the bubble size values are represented on the bubble chart. Read/write BubbleSizeRepresentationType.
560
+ */
561
+ bubbleSizeRepresentation?: ChartSeriesGroup.BubbleSizeRepresentationEnum;
562
+ }
563
+ export declare namespace ChartSeriesGroup {
564
+ enum TypeEnum {
565
+ BarOfPieChart,
566
+ PieOfPieChart,
567
+ DoughnutChart,
568
+ PieChart,
569
+ AreaChartArea,
570
+ AreaChartPercentsStackedArea,
571
+ AreaChartStackedArea,
572
+ BarChartHorizClustered,
573
+ BarChartHorizStacked,
574
+ BarChartHorizPercentsStacked,
575
+ BarChartVertClustered,
576
+ BarChartVertStacked,
577
+ BarChartVertPercentsStacked,
578
+ LineChartLine,
579
+ LineChartStackedLine,
580
+ LineChartPercentsStackedLine,
581
+ RadarChart,
582
+ FilledRadarChart,
583
+ StockHighLowClose,
584
+ StockOpenHighLowClose,
585
+ StockVolumeHighLowClose,
586
+ StockVolumeOpenHighLowClose,
587
+ ScatterStraightMarker,
588
+ ScatterSmoothMarker,
589
+ AreaChartArea3D,
590
+ AreaChartStackedArea3D,
591
+ AreaChartPercentsStackedArea3D,
592
+ Line3DChart,
593
+ Pie3DChart,
594
+ Bar3DChartVert,
595
+ Bar3DChartVertClustered,
596
+ Bar3DChartVertPercentsStackedColumn3D,
597
+ Bar3DChartVertPercentsStackedCone,
598
+ Bar3DChartVertPercentsStackedCylinder,
599
+ Bar3DChartVertPercentsStackedPyramid,
600
+ Bar3DChartVertStackedColumn3D,
601
+ Bar3DChartVertStackedCone,
602
+ Bar3DChartVertStackedCylinder,
603
+ Bar3DChartVertStackedPyramid,
604
+ Bar3DChartHorizClustered,
605
+ Bar3DChartHorizStackedBar3D,
606
+ Bar3DChartHorizStackedCone,
607
+ Bar3DChartHorizStackedCylinder,
608
+ Bar3DChartHorizStackedPyramid,
609
+ Bar3DChartHorizPercentsStackedBar3D,
610
+ Bar3DChartHorizPercentsStackedCone,
611
+ Bar3DChartHorizPercentsStackedCylinder,
612
+ Bar3DChartHorizPercentsStackedPyramid,
613
+ SurfaceChartContour,
614
+ SurfaceChartWireframeContour,
615
+ SurfaceChartSurface3D,
616
+ SurfaceChartWireframeSurface3D,
617
+ BubbleChart,
618
+ HistogramChart,
619
+ ParetoLineChart,
620
+ BoxAndWhiskerChart,
621
+ WaterfallChart,
622
+ FunnelChart,
623
+ TreemapChart,
624
+ MapChart,
625
+ SunburstChart
626
+ }
627
+ enum PieSplitByEnum {
628
+ Default,
629
+ Custom,
630
+ ByPercentage,
631
+ ByPos,
632
+ ByValue
633
+ }
634
+ enum BubbleSizeRepresentationEnum {
635
+ Area,
636
+ Width
637
+ }
638
+ }
453
639
  /**
454
640
  * Represents chart title
455
641
  */
@@ -496,6 +682,17 @@ export declare namespace ChartWall {
496
682
  NotDefined
497
683
  }
498
684
  }
685
+ /**
686
+ * 3D chart wall type
687
+ */
688
+ /**
689
+ * 3D chart wall type
690
+ */
691
+ export declare enum ChartWallType {
692
+ 'Floor',
693
+ 'SideWall',
694
+ 'BackWall'
695
+ }
499
696
  /**
500
697
  * Slide view properties.
501
698
  */
@@ -931,14 +1128,6 @@ export declare class ExportOptions {
931
1128
  * Default regular font for rendering the presentation.
932
1129
  */
933
1130
  defaultRegularFont?: string;
934
- /**
935
- * Gets or sets the height of slides in the output format, e.g. image size, pdf page size etc.
936
- */
937
- height?: number;
938
- /**
939
- * Gets or sets the height of slides in the output format, e.g. image size, pdf page size etc.
940
- */
941
- width?: number;
942
1131
  /**
943
1132
  * Gets of sets list of font fallback rules.
944
1133
  */
@@ -1193,6 +1382,33 @@ export declare enum ImageExportFormat {
1193
1382
  'Bmp',
1194
1383
  'Tiff'
1195
1384
  }
1385
+ /**
1386
+ * Image transform effect
1387
+ */
1388
+ export declare class ImageTransformEffect {
1389
+ type?: ImageTransformEffect.TypeEnum;
1390
+ }
1391
+ export declare namespace ImageTransformEffect {
1392
+ enum TypeEnum {
1393
+ AlphaBiLevel,
1394
+ AlphaCeiling,
1395
+ AlphaFloor,
1396
+ AlphaInverse,
1397
+ AlphaModulate,
1398
+ AlphaModulateFixed,
1399
+ AlphaReplace,
1400
+ BiLevel,
1401
+ Blur,
1402
+ ColorChange,
1403
+ ColorReplace,
1404
+ Duotone,
1405
+ FillOverlay,
1406
+ GrayScale,
1407
+ Hsl,
1408
+ Luminance,
1409
+ Tint
1410
+ }
1411
+ }
1196
1412
  /**
1197
1413
  * Represents inner shadow effect
1198
1414
  */
@@ -1593,7 +1809,25 @@ export declare enum NotesSlideExportFormat {
1593
1809
  'Png',
1594
1810
  'Gif',
1595
1811
  'Bmp',
1596
- 'Tiff'
1812
+ 'Tiff',
1813
+ 'Html',
1814
+ 'Pdf',
1815
+ 'Xps',
1816
+ 'Pptx',
1817
+ 'Odp',
1818
+ 'Otp',
1819
+ 'Ppt',
1820
+ 'Pps',
1821
+ 'Ppsx',
1822
+ 'Pptm',
1823
+ 'Ppsm',
1824
+ 'Potx',
1825
+ 'Pot',
1826
+ 'Potm',
1827
+ 'Svg',
1828
+ 'Fodp',
1829
+ 'Xaml',
1830
+ 'Html5'
1597
1831
  }
1598
1832
  /**
1599
1833
  * Object exists
@@ -1722,6 +1956,197 @@ export declare namespace PlotArea {
1722
1956
  Outer
1723
1957
  }
1724
1958
  }
1959
+ /**
1960
+ * Represents portion format.
1961
+ */
1962
+ export declare class PortionFormat {
1963
+ /**
1964
+ * True for bold font.
1965
+ */
1966
+ fontBold?: PortionFormat.FontBoldEnum;
1967
+ /**
1968
+ * True for italic font.
1969
+ */
1970
+ fontItalic?: PortionFormat.FontItalicEnum;
1971
+ /**
1972
+ * Text underline type.
1973
+ */
1974
+ fontUnderline?: PortionFormat.FontUnderlineEnum;
1975
+ /**
1976
+ * Text strikethrough type.
1977
+ */
1978
+ strikethroughType?: PortionFormat.StrikethroughTypeEnum;
1979
+ /**
1980
+ * Text capitalization type.
1981
+ */
1982
+ textCapType?: PortionFormat.TextCapTypeEnum;
1983
+ /**
1984
+ * Superscript or subscript of the text.
1985
+ */
1986
+ escapement?: number;
1987
+ /**
1988
+ * Intercharacter spacing increment.
1989
+ */
1990
+ spacing?: number;
1991
+ /**
1992
+ * Font color.
1993
+ */
1994
+ fontColor?: string;
1995
+ /**
1996
+ * Highlight color.
1997
+ */
1998
+ highlightColor?: string;
1999
+ /**
2000
+ * Font height.
2001
+ */
2002
+ fontHeight?: number;
2003
+ /**
2004
+ * True to normalize the text.
2005
+ */
2006
+ normaliseHeight?: PortionFormat.NormaliseHeightEnum;
2007
+ /**
2008
+ * True if the text proof should be disabled.
2009
+ */
2010
+ proofDisabled?: PortionFormat.ProofDisabledEnum;
2011
+ /**
2012
+ * True if smart tag should be cleaned.
2013
+ */
2014
+ smartTagClean?: boolean;
2015
+ /**
2016
+ * Minimal font size for kerning.
2017
+ */
2018
+ kerningMinimalSize?: number;
2019
+ /**
2020
+ * True if numbers should ignore East-Asian specific vertical text layout.
2021
+ */
2022
+ kumimoji?: PortionFormat.KumimojiEnum;
2023
+ /**
2024
+ * Proving language ID.
2025
+ */
2026
+ languageId?: string;
2027
+ /**
2028
+ * Alternative proving language ID.
2029
+ */
2030
+ alternativeLanguageId?: string;
2031
+ /**
2032
+ * True if underline style has own FillFormat properties.
2033
+ */
2034
+ isHardUnderlineFill?: PortionFormat.IsHardUnderlineFillEnum;
2035
+ /**
2036
+ * True if underline style has own LineFormat properties.
2037
+ */
2038
+ isHardUnderlineLine?: PortionFormat.IsHardUnderlineLineEnum;
2039
+ /**
2040
+ * Fill format.
2041
+ */
2042
+ fillFormat?: FillFormat;
2043
+ /**
2044
+ * Effect format.
2045
+ */
2046
+ effectFormat?: EffectFormat;
2047
+ /**
2048
+ * Line format.
2049
+ */
2050
+ lineFormat?: LineFormat;
2051
+ /**
2052
+ * Underline fill format.
2053
+ */
2054
+ underlineFillFormat?: FillFormat;
2055
+ /**
2056
+ * Underline line format.
2057
+ */
2058
+ underlineLineFormat?: LineFormat;
2059
+ /**
2060
+ * Hyperlink defined for mouse click.
2061
+ */
2062
+ hyperlinkClick?: Hyperlink;
2063
+ /**
2064
+ * Hyperlink defined for mouse over.
2065
+ */
2066
+ hyperlinkMouseOver?: Hyperlink;
2067
+ /**
2068
+ * Returns or sets the Latin font info.
2069
+ */
2070
+ latinFont?: string;
2071
+ /**
2072
+ * Returns or sets the East Asian font info.
2073
+ */
2074
+ eastAsianFont?: string;
2075
+ /**
2076
+ * Returns or sets the complex script font info.
2077
+ */
2078
+ complexScriptFont?: string;
2079
+ }
2080
+ export declare namespace PortionFormat {
2081
+ enum FontBoldEnum {
2082
+ False,
2083
+ True,
2084
+ NotDefined
2085
+ }
2086
+ enum FontItalicEnum {
2087
+ False,
2088
+ True,
2089
+ NotDefined
2090
+ }
2091
+ enum FontUnderlineEnum {
2092
+ None,
2093
+ Words,
2094
+ Single,
2095
+ Double,
2096
+ Heavy,
2097
+ Dotted,
2098
+ HeavyDotted,
2099
+ Dashed,
2100
+ HeavyDashed,
2101
+ LongDashed,
2102
+ HeavyLongDashed,
2103
+ DotDash,
2104
+ HeavyDotDash,
2105
+ DotDotDash,
2106
+ HeavyDotDotDash,
2107
+ Wavy,
2108
+ HeavyWavy,
2109
+ DoubleWavy,
2110
+ NotDefined
2111
+ }
2112
+ enum StrikethroughTypeEnum {
2113
+ None,
2114
+ Single,
2115
+ Double,
2116
+ NotDefined
2117
+ }
2118
+ enum TextCapTypeEnum {
2119
+ None,
2120
+ Small,
2121
+ All,
2122
+ NotDefined
2123
+ }
2124
+ enum NormaliseHeightEnum {
2125
+ False,
2126
+ True,
2127
+ NotDefined
2128
+ }
2129
+ enum ProofDisabledEnum {
2130
+ False,
2131
+ True,
2132
+ NotDefined
2133
+ }
2134
+ enum KumimojiEnum {
2135
+ False,
2136
+ True,
2137
+ NotDefined
2138
+ }
2139
+ enum IsHardUnderlineFillEnum {
2140
+ False,
2141
+ True,
2142
+ NotDefined
2143
+ }
2144
+ enum IsHardUnderlineLineEnum {
2145
+ False,
2146
+ True,
2147
+ NotDefined
2148
+ }
2149
+ }
1725
2150
  /**
1726
2151
  * Represents presentation to merge
1727
2152
  */
@@ -1746,7 +2171,8 @@ export declare class PresentationToMerge {
1746
2171
  export declare namespace PresentationToMerge {
1747
2172
  enum SourceEnum {
1748
2173
  Storage,
1749
- Request
2174
+ Request,
2175
+ Url
1750
2176
  }
1751
2177
  }
1752
2178
  /**
@@ -1915,6 +2341,14 @@ export declare class ResourceUri {
1915
2341
  * Gets or sets the title of link.
1916
2342
  */
1917
2343
  title?: string;
2344
+ /**
2345
+ * Resource slide index.
2346
+ */
2347
+ slideIndex?: number;
2348
+ /**
2349
+ * Resource shape index.
2350
+ */
2351
+ shapeIndex?: number;
1918
2352
  }
1919
2353
  /**
1920
2354
  * A chart series.
@@ -2289,7 +2723,8 @@ export declare enum SlideExportFormat {
2289
2723
  'Potm',
2290
2724
  'Svg',
2291
2725
  'Fodp',
2292
- 'Xaml'
2726
+ 'Xaml',
2727
+ 'Html5'
2293
2728
  }
2294
2729
  /**
2295
2730
  * Smart art node.
@@ -2315,6 +2750,10 @@ export declare class SmartArtNode {
2315
2750
  * Organization chart layout type associated with current node.
2316
2751
  */
2317
2752
  orgChartLayout: SmartArtNode.OrgChartLayoutEnum;
2753
+ /**
2754
+ * Get or sets list to paragraphs list
2755
+ */
2756
+ paragraphs?: ResourceUri;
2318
2757
  }
2319
2758
  export declare namespace SmartArtNode {
2320
2759
  enum OrgChartLayoutEnum {
@@ -2447,6 +2886,14 @@ export declare class TableCell {
2447
2886
  * Line properties set for the diagonal down border of the cell.
2448
2887
  */
2449
2888
  borderDiagonalDown?: LineFormat;
2889
+ /**
2890
+ * Cell column index
2891
+ */
2892
+ columnIndex?: number;
2893
+ /**
2894
+ * Cell row index
2895
+ */
2896
+ rowIndex?: number;
2450
2897
  }
2451
2898
  export declare namespace TableCell {
2452
2899
  enum TextAnchorTypeEnum {
@@ -2770,6 +3217,74 @@ export declare class AddSlide extends Task {
2770
3217
  }
2771
3218
  export declare namespace AddSlide {
2772
3219
  }
3220
+ /**
3221
+ * Represents an Alpha Bi-Level effect.
3222
+ */
3223
+ export declare class AlphaBiLevelEffect extends ImageTransformEffect {
3224
+ constructor();
3225
+ /**
3226
+ * Returns effect threshold.
3227
+ */
3228
+ threshold: number;
3229
+ }
3230
+ export declare namespace AlphaBiLevelEffect {
3231
+ }
3232
+ /**
3233
+ * Represents an Alpha Ceiling effect.
3234
+ */
3235
+ export declare class AlphaCeilingEffect extends ImageTransformEffect {
3236
+ constructor();
3237
+ }
3238
+ export declare namespace AlphaCeilingEffect {
3239
+ }
3240
+ /**
3241
+ * /// Represents an Alpha Floor effect.
3242
+ */
3243
+ export declare class AlphaFloorEffect extends ImageTransformEffect {
3244
+ constructor();
3245
+ }
3246
+ export declare namespace AlphaFloorEffect {
3247
+ }
3248
+ /**
3249
+ * Represents an Alpha Inverse effect.
3250
+ */
3251
+ export declare class AlphaInverseEffect extends ImageTransformEffect {
3252
+ constructor();
3253
+ }
3254
+ export declare namespace AlphaInverseEffect {
3255
+ }
3256
+ /**
3257
+ * Represents an Alpha Modulate effect.
3258
+ */
3259
+ export declare class AlphaModulateEffect extends ImageTransformEffect {
3260
+ constructor();
3261
+ }
3262
+ export declare namespace AlphaModulateEffect {
3263
+ }
3264
+ /**
3265
+ * Represents an Alpha Modulate Fixed effect.
3266
+ */
3267
+ export declare class AlphaModulateFixedEffect extends ImageTransformEffect {
3268
+ constructor();
3269
+ /**
3270
+ * Returns an amount of effect in percents.
3271
+ */
3272
+ amount: number;
3273
+ }
3274
+ export declare namespace AlphaModulateFixedEffect {
3275
+ }
3276
+ /**
3277
+ * Represents an Alpha Replace Effect effect.
3278
+ */
3279
+ export declare class AlphaReplaceEffect extends ImageTransformEffect {
3280
+ constructor();
3281
+ /**
3282
+ * The new opacity value.
3283
+ */
3284
+ alpha: number;
3285
+ }
3286
+ export declare namespace AlphaReplaceEffect {
3287
+ }
2773
3288
  /**
2774
3289
  * Arc segment of the geometry path
2775
3290
  */
@@ -2872,6 +3387,18 @@ export declare class Base64InputFile extends InputFile {
2872
3387
  }
2873
3388
  export declare namespace Base64InputFile {
2874
3389
  }
3390
+ /**
3391
+ * Represents an BiLevel effect.
3392
+ */
3393
+ export declare class BiLevelEffect extends ImageTransformEffect {
3394
+ constructor();
3395
+ /**
3396
+ * Returns effect threshold.
3397
+ */
3398
+ threshold: number;
3399
+ }
3400
+ export declare namespace BiLevelEffect {
3401
+ }
2875
3402
  /**
2876
3403
  * Specifies an instance of mathematical text that contained within a MathParagraph and starts on its own line.
2877
3404
  */
@@ -2884,6 +3411,22 @@ export declare class BlockElement extends MathElement {
2884
3411
  }
2885
3412
  export declare namespace BlockElement {
2886
3413
  }
3414
+ /**
3415
+ * Represents a Blur effect that is applied to the entire shape, including its fill. All color channels, including alpha, are affected.
3416
+ */
3417
+ export declare class BlurImageEffect extends ImageTransformEffect {
3418
+ constructor();
3419
+ /**
3420
+ * Returns or sets blur radius.
3421
+ */
3422
+ radius: number;
3423
+ /**
3424
+ * Determines whether the bounds of the object should be grown as a result of the blurring. True indicates the bounds are grown while false indicates that they are not.
3425
+ */
3426
+ grow: boolean;
3427
+ }
3428
+ export declare namespace BlurImageEffect {
3429
+ }
2887
3430
  /**
2888
3431
  * Rectangular or some other border around the MathElement.
2889
3432
  */
@@ -2968,6 +3511,34 @@ export declare class ClosePathSegment extends PathSegment {
2968
3511
  }
2969
3512
  export declare namespace ClosePathSegment {
2970
3513
  }
3514
+ /**
3515
+ * Represents a Color Change effect.
3516
+ */
3517
+ export declare class ColorChangeEffect extends ImageTransformEffect {
3518
+ constructor();
3519
+ /**
3520
+ * Color which will be replaced.
3521
+ */
3522
+ fromColor?: string;
3523
+ /**
3524
+ * Color which will replace.
3525
+ */
3526
+ toColor?: string;
3527
+ }
3528
+ export declare namespace ColorChangeEffect {
3529
+ }
3530
+ /**
3531
+ * Represents a Color Replacement effect.
3532
+ */
3533
+ export declare class ColorReplaceEffect extends ImageTransformEffect {
3534
+ constructor();
3535
+ /**
3536
+ * Returns color format which will replace color of every pixel.
3537
+ */
3538
+ color?: string;
3539
+ }
3540
+ export declare namespace ColorReplaceEffect {
3541
+ }
2971
3542
  /**
2972
3543
  * Slide's color scheme DTO
2973
3544
  */
@@ -3148,6 +3719,22 @@ export declare class DocumentProperty extends ResourceBase {
3148
3719
  */
3149
3720
  builtIn: boolean;
3150
3721
  }
3722
+ /**
3723
+ * Represents a Duotone effect.
3724
+ */
3725
+ export declare class DuotoneEffect extends ImageTransformEffect {
3726
+ constructor();
3727
+ /**
3728
+ * Returns target color format for dark pixels.
3729
+ */
3730
+ color1?: string;
3731
+ /**
3732
+ * Returns target color format for light pixels.
3733
+ */
3734
+ color2?: string;
3735
+ }
3736
+ export declare namespace DuotoneEffect {
3737
+ }
3151
3738
  /**
3152
3739
  * File Version
3153
3740
  */
@@ -3162,6 +3749,29 @@ export declare class FileVersion extends StorageFile {
3162
3749
  */
3163
3750
  isLatest: boolean;
3164
3751
  }
3752
+ /**
3753
+ * Represents a Fill Overlay effect. A fill overlay may be used to specify an additional fill for an object and blend the two fills together.
3754
+ */
3755
+ export declare class FillOverlayImageEffect extends ImageTransformEffect {
3756
+ constructor();
3757
+ /**
3758
+ * FillBlendMode.
3759
+ */
3760
+ blend: FillOverlayImageEffect.BlendEnum;
3761
+ /**
3762
+ * Fill format.
3763
+ */
3764
+ fillFormat?: FillFormat;
3765
+ }
3766
+ export declare namespace FillOverlayImageEffect {
3767
+ enum BlendEnum {
3768
+ Darken,
3769
+ Lighten,
3770
+ Multiply,
3771
+ Overlay,
3772
+ Screen
3773
+ }
3774
+ }
3165
3775
  /**
3166
3776
  * Represents font scheme
3167
3777
  */
@@ -3186,21 +3796,21 @@ export declare class FontScheme extends ResourceBase {
3186
3796
  export declare class FormatScheme extends ResourceBase {
3187
3797
  constructor();
3188
3798
  /**
3189
- * Background style links.
3799
+ * Background styles.
3190
3800
  */
3191
- backgroundStyles?: Array<ResourceUri>;
3801
+ backgroundStyles?: Array<FillFormat>;
3192
3802
  /**
3193
- * Effect style links.
3803
+ * Effect styles.
3194
3804
  */
3195
- effectStyles?: Array<ResourceUri>;
3805
+ effectStyles?: Array<EffectFormat>;
3196
3806
  /**
3197
- * Fill style links.
3807
+ * Fill styles.
3198
3808
  */
3199
- fillStyles?: Array<ResourceUri>;
3809
+ fillStyles?: Array<FillFormat>;
3200
3810
  /**
3201
- * Line style links.
3811
+ * Line style.
3202
3812
  */
3203
- lineStyles?: Array<ResourceUri>;
3813
+ lineStyles?: Array<LineFormat>;
3204
3814
  }
3205
3815
  /**
3206
3816
  * Specifies the fraction object, consisting of a numerator and denominator separated by a fraction bar.
@@ -3244,24 +3854,6 @@ export declare class FunctionElement extends MathElement {
3244
3854
  }
3245
3855
  export declare namespace FunctionElement {
3246
3856
  }
3247
- /**
3248
- * Provides options that control how a presentation is saved in Gif format.
3249
- */
3250
- export declare class GifExportOptions extends ExportOptions {
3251
- constructor();
3252
- /**
3253
- * Determines whether hidden slides will be exported.
3254
- */
3255
- exportHiddenSlides?: boolean;
3256
- /**
3257
- * Gets or sets transition FPS [frames/sec]
3258
- */
3259
- transitionFps?: number;
3260
- /**
3261
- * Gets or sets default delay time [ms].
3262
- */
3263
- defaultDelay?: number;
3264
- }
3265
3857
  /**
3266
3858
  * Represents gradient fill format
3267
3859
  */
@@ -3316,6 +3908,14 @@ export declare namespace GradientFill {
3316
3908
  NotDefined
3317
3909
  }
3318
3910
  }
3911
+ /**
3912
+ * Represents an Gray Scale effect.
3913
+ */
3914
+ export declare class GrayScaleEffect extends ImageTransformEffect {
3915
+ constructor();
3916
+ }
3917
+ export declare namespace GrayScaleEffect {
3918
+ }
3319
3919
  /**
3320
3920
  * Specifies a grouping symbol above or below an expression, usually to highlight the relationship between elements
3321
3921
  */
@@ -3376,6 +3976,26 @@ export declare class HeaderFooter extends ResourceBase {
3376
3976
  */
3377
3977
  isSlideNumberVisible?: boolean;
3378
3978
  }
3979
+ /**
3980
+ * Represents a Hue/Saturation/Luminance effect.
3981
+ */
3982
+ export declare class HslEffect extends ImageTransformEffect {
3983
+ constructor();
3984
+ /**
3985
+ * Hue
3986
+ */
3987
+ hue: number;
3988
+ /**
3989
+ * Saturation
3990
+ */
3991
+ saturation: number;
3992
+ /**
3993
+ * Luminance
3994
+ */
3995
+ luminance: number;
3996
+ }
3997
+ export declare namespace HslEffect {
3998
+ }
3379
3999
  /**
3380
4000
  * Provides options that control how a presentation is saved in Html5 format.
3381
4001
  */
@@ -3483,38 +4103,18 @@ export declare class Image extends ResourceBase {
3483
4103
  contentType?: string;
3484
4104
  }
3485
4105
  /**
3486
- * Provides options that control how a presentation is saved in an image format.
4106
+ * The class provides shared options for image formats.
3487
4107
  */
3488
- export declare class ImageExportOptions extends ExportOptions {
4108
+ export declare class ImageExportOptionsBase extends ExportOptions {
3489
4109
  constructor();
3490
4110
  /**
3491
- * Gets or sets the position of the notes on the page.
3492
- */
3493
- notesPosition?: ImageExportOptions.NotesPositionEnum;
3494
- /**
3495
- * Gets or sets the position of the comments on the page.
3496
- */
3497
- commentsPosition?: ImageExportOptions.CommentsPositionEnum;
3498
- /**
3499
- * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
4111
+ * Gets or sets the height of slides in the output image format.
3500
4112
  */
3501
- commentsAreaWidth?: number;
4113
+ height?: number;
3502
4114
  /**
3503
- * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
4115
+ * Gets or sets the height of slides in the output the output image format.
3504
4116
  */
3505
- commentsAreaColor?: string;
3506
- }
3507
- export declare namespace ImageExportOptions {
3508
- enum NotesPositionEnum {
3509
- None,
3510
- BottomFull,
3511
- BottomTruncated
3512
- }
3513
- enum CommentsPositionEnum {
3514
- None,
3515
- Bottom,
3516
- Right
3517
- }
4117
+ width?: number;
3518
4118
  }
3519
4119
  /**
3520
4120
  * List of images.
@@ -3654,6 +4254,22 @@ export declare class LineToPathSegment extends PathSegment {
3654
4254
  }
3655
4255
  export declare namespace LineToPathSegment {
3656
4256
  }
4257
+ /**
4258
+ * Represents a Luminance effect.
4259
+ */
4260
+ export declare class LuminanceEffect extends ImageTransformEffect {
4261
+ constructor();
4262
+ /**
4263
+ * Brightness
4264
+ */
4265
+ brightness: number;
4266
+ /**
4267
+ * Contrast
4268
+ */
4269
+ contrast: number;
4270
+ }
4271
+ export declare namespace LuminanceEffect {
4272
+ }
3657
4273
  /**
3658
4274
  * Master slide.
3659
4275
  */
@@ -3880,6 +4496,14 @@ export declare class OneValueChartDataPoint extends DataPoint {
3880
4496
  * Value.
3881
4497
  */
3882
4498
  value: number;
4499
+ /**
4500
+ * SetAsTotal. Applied to Waterfall data points only.
4501
+ */
4502
+ setAsTotal?: boolean;
4503
+ /**
4504
+ * True if the data point shall invert its colors if the value is negative. Applies to bar, column and bubble series.
4505
+ */
4506
+ invertIfNegative?: boolean;
3883
4507
  }
3884
4508
  /**
3885
4509
  * One value series.
@@ -3894,8 +4518,36 @@ export declare class OneValueSeries extends Series {
3894
4518
  * The number format for the series values.
3895
4519
  */
3896
4520
  numberFormatOfValues?: string;
4521
+ /**
4522
+ * True if inner points are shown. Applied to Waterfall series only.
4523
+ */
4524
+ showConnectorLines?: boolean;
4525
+ /**
4526
+ * Quartile method. Applied to BoxAndWhisker series only.
4527
+ */
4528
+ quartileMethod?: OneValueSeries.QuartileMethodEnum;
4529
+ /**
4530
+ * True if inner points are shown. Applied to BoxAndWhisker series only.
4531
+ */
4532
+ showInnerPoints?: boolean;
4533
+ /**
4534
+ * True if mean line is shown. Applied to BoxAndWhisker series only.
4535
+ */
4536
+ showMeanLine?: boolean;
4537
+ /**
4538
+ * True if mean markers are shown. Applied to BoxAndWhisker series only.
4539
+ */
4540
+ showMeanMarkers?: boolean;
4541
+ /**
4542
+ * True if outlier points are shown. Applied to BoxAndWhisker series only.
4543
+ */
4544
+ showOutlierPoints?: boolean;
3897
4545
  }
3898
4546
  export declare namespace OneValueSeries {
4547
+ enum QuartileMethodEnum {
4548
+ Exclusive,
4549
+ Inclusive
4550
+ }
3899
4551
  }
3900
4552
  /**
3901
4553
  * Represents paragraph resource
@@ -3982,6 +4634,10 @@ export declare class Paragraph extends ResourceBase {
3982
4634
  * List of portion links.
3983
4635
  */
3984
4636
  portionList?: Array<Portion>;
4637
+ /**
4638
+ * Default portion format.
4639
+ */
4640
+ defaultPortionFormat?: PortionFormat;
3985
4641
  }
3986
4642
  export declare namespace Paragraph {
3987
4643
  enum AlignmentEnum {
@@ -4273,7 +4929,7 @@ export declare class PdfExportOptions extends ExportOptions {
4273
4929
  /**
4274
4930
  * Access permissions that should be granted when the document is opened with user access. Default is AccessPermissions.None.
4275
4931
  */
4276
- accessPermissions?: PdfExportOptions.AccessPermissionsEnum;
4932
+ accessPermissions?: AccessPermissions;
4277
4933
  }
4278
4934
  export declare namespace PdfExportOptions {
4279
4935
  enum TextCompressionEnum {
@@ -4296,17 +4952,6 @@ export declare namespace PdfExportOptions {
4296
4952
  Bottom,
4297
4953
  Right
4298
4954
  }
4299
- enum AccessPermissionsEnum {
4300
- None,
4301
- PrintDocument,
4302
- ModifyContent,
4303
- CopyTextAndGraphics,
4304
- AddOrModifyFields,
4305
- FillExistingFields,
4306
- ExtractTextAndGraphics,
4307
- AssembleDocument,
4308
- HighQualityPrint
4309
- }
4310
4955
  }
4311
4956
  /**
4312
4957
  * Picture fill.
@@ -4349,6 +4994,10 @@ export declare class PictureFill extends FillFormat {
4349
4994
  * Fill mode.
4350
4995
  */
4351
4996
  pictureFillMode: PictureFill.PictureFillModeEnum;
4997
+ /**
4998
+ * Image transform effects.
4999
+ */
5000
+ imageTransformList?: Array<ImageTransformEffect>;
4352
5001
  }
4353
5002
  export declare namespace PictureFill {
4354
5003
  enum PictureFillModeEnum {
@@ -4643,9 +5292,9 @@ export declare class PptxExportOptions extends ExportOptions {
4643
5292
  }
4644
5293
  export declare namespace PptxExportOptions {
4645
5294
  enum ConformanceEnum {
4646
- Ecma3762006,
4647
- Iso295002008Transitional,
4648
- Iso295002008Strict
5295
+ Ecma376,
5296
+ Iso29500Transitional,
5297
+ Iso29500Strict
4649
5298
  }
4650
5299
  }
4651
5300
  /**
@@ -4974,7 +5623,8 @@ export declare namespace SaveSlide {
4974
5623
  Potm,
4975
5624
  Svg,
4976
5625
  Fodp,
4977
- Xaml
5626
+ Xaml,
5627
+ Html5
4978
5628
  }
4979
5629
  }
4980
5630
  /**
@@ -5060,10 +5710,6 @@ export declare class ShapeBase extends ResourceBase {
5060
5710
  * Gets z-order position of shape
5061
5711
  */
5062
5712
  zOrderPosition: number;
5063
- /**
5064
- * Gets or sets the link to shapes.
5065
- */
5066
- shapes?: ResourceUri;
5067
5713
  /**
5068
5714
  * Gets or sets the fill format.
5069
5715
  */
@@ -5580,77 +6226,20 @@ export declare class Theme extends ResourceBase {
5580
6226
  formatScheme?: ResourceUri;
5581
6227
  }
5582
6228
  /**
5583
- * Provides options that control how a presentation is saved in TIFF format.
6229
+ * Represents a Tint effect.
5584
6230
  */
5585
- export declare class TiffExportOptions extends ExportOptions {
6231
+ export declare class TintEffect extends ImageTransformEffect {
5586
6232
  constructor();
5587
6233
  /**
5588
- * Compression type.
5589
- */
5590
- compression?: TiffExportOptions.CompressionEnum;
5591
- /**
5592
- * Horizontal resolution, in dots per inch.
5593
- */
5594
- dpiX?: number;
5595
- /**
5596
- * Vertical resolution, in dots per inch.
5597
- */
5598
- dpiY?: number;
5599
- /**
5600
- * Specifies whether the generated document should include hidden slides or not. Default is false.
5601
- */
5602
- showHiddenSlides?: boolean;
5603
- /**
5604
- * Specifies the pixel format for the generated images. Read/write ImagePixelFormat.
5605
- */
5606
- pixelFormat?: TiffExportOptions.PixelFormatEnum;
5607
- /**
5608
- * Gets or sets the position of the notes on the page.
5609
- */
5610
- notesPosition?: TiffExportOptions.NotesPositionEnum;
5611
- /**
5612
- * Gets or sets the position of the comments on the page.
5613
- */
5614
- commentsPosition?: TiffExportOptions.CommentsPositionEnum;
5615
- /**
5616
- * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
5617
- */
5618
- commentsAreaWidth?: number;
5619
- /**
5620
- * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
6234
+ * Hue
5621
6235
  */
5622
- commentsAreaColor?: string;
6236
+ hue: number;
5623
6237
  /**
5624
- * True if comments that have no author are displayed. (Applies only if comments are displayed).
6238
+ * Amount
5625
6239
  */
5626
- showCommentsByNoAuthor?: boolean;
6240
+ amount: number;
5627
6241
  }
5628
- export declare namespace TiffExportOptions {
5629
- enum CompressionEnum {
5630
- Default,
5631
- None,
5632
- CCITT3,
5633
- CCITT4,
5634
- LZW,
5635
- RLE
5636
- }
5637
- enum PixelFormatEnum {
5638
- Format1bppIndexed,
5639
- Format4bppIndexed,
5640
- Format8bppIndexed,
5641
- Format24bppRgb,
5642
- Format32bppArgb
5643
- }
5644
- enum NotesPositionEnum {
5645
- None,
5646
- BottomFull,
5647
- BottomTruncated
5648
- }
5649
- enum CommentsPositionEnum {
5650
- None,
5651
- Bottom,
5652
- Right
5653
- }
6242
+ export declare namespace TintEffect {
5654
6243
  }
5655
6244
  /**
5656
6245
  * Update background task.
@@ -5690,7 +6279,15 @@ export declare namespace UpdateShape {
5690
6279
  export declare class VideoExportOptions extends ExportOptions {
5691
6280
  constructor();
5692
6281
  /**
5693
- * Transition duration.
6282
+ * Slides transition duration.
6283
+ */
6284
+ slidesTransitionDuration?: number;
6285
+ /**
6286
+ * Video transition type
6287
+ */
6288
+ transitionType?: VideoExportOptions.TransitionTypeEnum;
6289
+ /**
6290
+ * Duration of transition defined in TransitionType property.
5694
6291
  */
5695
6292
  transitionDuration?: number;
5696
6293
  /**
@@ -5699,6 +6296,38 @@ export declare class VideoExportOptions extends ExportOptions {
5699
6296
  videoResolutionType?: VideoExportOptions.VideoResolutionTypeEnum;
5700
6297
  }
5701
6298
  export declare namespace VideoExportOptions {
6299
+ enum TransitionTypeEnum {
6300
+ None,
6301
+ Fade,
6302
+ Distance,
6303
+ Slidedown,
6304
+ Slideright,
6305
+ Slideleft,
6306
+ Slideup,
6307
+ Smoothleft,
6308
+ Smoothright,
6309
+ Smoothup,
6310
+ Smoothdown,
6311
+ Rectcrop,
6312
+ Circlecrop,
6313
+ Circleclose,
6314
+ Circleopen,
6315
+ Horzclose,
6316
+ Horzopen,
6317
+ Vertclose,
6318
+ Vertopen,
6319
+ Diagbl,
6320
+ Diagbr,
6321
+ Diagtl,
6322
+ Diagtr,
6323
+ Hlslice,
6324
+ Hrslice,
6325
+ Vuslice,
6326
+ Vdslice,
6327
+ Dissolve,
6328
+ Pixelize,
6329
+ Radial
6330
+ }
5702
6331
  enum VideoResolutionTypeEnum {
5703
6332
  FullHD,
5704
6333
  SD,
@@ -5820,38 +6449,6 @@ export declare class XpsExportOptions extends ExportOptions {
5820
6449
  */
5821
6450
  drawSlidesFrame?: boolean;
5822
6451
  }
5823
- /**
5824
- * One value series.
5825
- */
5826
- export declare class BoxAndWhiskerSeries extends OneValueSeries {
5827
- constructor();
5828
- /**
5829
- * Quartile method.
5830
- */
5831
- quartileMethod?: BoxAndWhiskerSeries.QuartileMethodEnum;
5832
- /**
5833
- * True if inner points are shown.
5834
- */
5835
- showInnerPoints?: boolean;
5836
- /**
5837
- * True if mean line is shown.
5838
- */
5839
- showMeanLine?: boolean;
5840
- /**
5841
- * True if mean markers are shown.
5842
- */
5843
- showMeanMarkers?: boolean;
5844
- /**
5845
- * True if outlier points are shown.
5846
- */
5847
- showOutlierPoints?: boolean;
5848
- }
5849
- export declare namespace BoxAndWhiskerSeries {
5850
- enum QuartileMethodEnum {
5851
- Exclusive,
5852
- Inclusive
5853
- }
5854
- }
5855
6452
  /**
5856
6453
  * Bubble chart data point.
5857
6454
  */
@@ -5927,6 +6524,14 @@ export declare class Chart extends ShapeBase {
5927
6524
  * Gets or sets the plot area.
5928
6525
  */
5929
6526
  plotArea?: PlotArea;
6527
+ /**
6528
+ * Specifies the chart area shall have rounded corners.
6529
+ */
6530
+ hasRoundedCorners?: boolean;
6531
+ /**
6532
+ * Gets groups of series.
6533
+ */
6534
+ seriesGroups?: Array<ChartSeriesGroup>;
5930
6535
  }
5931
6536
  export declare namespace Chart {
5932
6537
  enum ChartTypeEnum {
@@ -6227,6 +6832,24 @@ export declare namespace GeometryShape {
6227
6832
  NotDefined
6228
6833
  }
6229
6834
  }
6835
+ /**
6836
+ * Provides options that control how a presentation is saved in Gif format.
6837
+ */
6838
+ export declare class GifExportOptions extends ImageExportOptionsBase {
6839
+ constructor();
6840
+ /**
6841
+ * Determines whether hidden slides will be exported.
6842
+ */
6843
+ exportHiddenSlides?: boolean;
6844
+ /**
6845
+ * Gets or sets transition FPS [frames/sec]
6846
+ */
6847
+ transitionFps?: number;
6848
+ /**
6849
+ * Gets or sets default delay time [ms].
6850
+ */
6851
+ defaultDelay?: number;
6852
+ }
6230
6853
  /**
6231
6854
  * Represents AudioFrame resource.
6232
6855
  */
@@ -6240,9 +6863,47 @@ export declare namespace GraphicalObject {
6240
6863
  */
6241
6864
  export declare class GroupShape extends ShapeBase {
6242
6865
  constructor();
6866
+ /**
6867
+ * Gets or sets the link to shapes.
6868
+ */
6869
+ shapes?: ResourceUri;
6243
6870
  }
6244
6871
  export declare namespace GroupShape {
6245
6872
  }
6873
+ /**
6874
+ * Provides options that control how a presentation is saved in an image format.
6875
+ */
6876
+ export declare class ImageExportOptions extends ImageExportOptionsBase {
6877
+ constructor();
6878
+ /**
6879
+ * Gets or sets the position of the notes on the page.
6880
+ */
6881
+ notesPosition?: ImageExportOptions.NotesPositionEnum;
6882
+ /**
6883
+ * Gets or sets the position of the comments on the page.
6884
+ */
6885
+ commentsPosition?: ImageExportOptions.CommentsPositionEnum;
6886
+ /**
6887
+ * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
6888
+ */
6889
+ commentsAreaWidth?: number;
6890
+ /**
6891
+ * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
6892
+ */
6893
+ commentsAreaColor?: string;
6894
+ }
6895
+ export declare namespace ImageExportOptions {
6896
+ enum NotesPositionEnum {
6897
+ None,
6898
+ BottomFull,
6899
+ BottomTruncated
6900
+ }
6901
+ enum CommentsPositionEnum {
6902
+ None,
6903
+ Bottom,
6904
+ Right
6905
+ }
6906
+ }
6246
6907
  /**
6247
6908
  * Represents OleObjectFrame resource.
6248
6909
  */
@@ -6256,6 +6917,34 @@ export declare class OleObjectFrame extends ShapeBase {
6256
6917
  * The title for OleObject icon.
6257
6918
  */
6258
6919
  substitutePictureTitle?: string;
6920
+ /**
6921
+ * OleObject image fill properties.
6922
+ */
6923
+ substitutePictureFormat?: PictureFill;
6924
+ /**
6925
+ * Returns or sets the name of an object.
6926
+ */
6927
+ objectName?: string;
6928
+ /**
6929
+ * File data of embedded OLE object.
6930
+ */
6931
+ embeddedFileBase64Data?: string;
6932
+ /**
6933
+ * File extension for the current embedded OLE object
6934
+ */
6935
+ embeddedFileExtension?: string;
6936
+ /**
6937
+ * ProgID of an object.
6938
+ */
6939
+ objectProgId?: string;
6940
+ /**
6941
+ * Full path to a linked file.
6942
+ */
6943
+ linkPath?: string;
6944
+ /**
6945
+ * Determines if the linked embedded object is automatically updated when the presentation is opened or printed. Read/write Boolean.
6946
+ */
6947
+ updateAutomatic?: boolean;
6259
6948
  }
6260
6949
  export declare namespace OleObjectFrame {
6261
6950
  }
@@ -6650,26 +7339,77 @@ export declare namespace Table {
6650
7339
  }
6651
7340
  }
6652
7341
  /**
6653
- * One value chart data point.
7342
+ * Provides options that control how a presentation is saved in TIFF format.
6654
7343
  */
6655
- export declare class WaterfallChartDataPoint extends OneValueChartDataPoint {
7344
+ export declare class TiffExportOptions extends ImageExportOptionsBase {
6656
7345
  constructor();
6657
7346
  /**
6658
- * Value.
7347
+ * Compression type.
6659
7348
  */
6660
- setAsTotal?: boolean;
6661
- }
6662
- /**
6663
- * One value series.
6664
- */
6665
- export declare class WaterfallSeries extends OneValueSeries {
6666
- constructor();
7349
+ compression?: TiffExportOptions.CompressionEnum;
6667
7350
  /**
6668
- * True if inner points are shown.
7351
+ * Horizontal resolution, in dots per inch.
6669
7352
  */
6670
- showConnectorLines?: boolean;
7353
+ dpiX?: number;
7354
+ /**
7355
+ * Vertical resolution, in dots per inch.
7356
+ */
7357
+ dpiY?: number;
7358
+ /**
7359
+ * Specifies whether the generated document should include hidden slides or not. Default is false.
7360
+ */
7361
+ showHiddenSlides?: boolean;
7362
+ /**
7363
+ * Specifies the pixel format for the generated images. Read/write ImagePixelFormat.
7364
+ */
7365
+ pixelFormat?: TiffExportOptions.PixelFormatEnum;
7366
+ /**
7367
+ * Gets or sets the position of the notes on the page.
7368
+ */
7369
+ notesPosition?: TiffExportOptions.NotesPositionEnum;
7370
+ /**
7371
+ * Gets or sets the position of the comments on the page.
7372
+ */
7373
+ commentsPosition?: TiffExportOptions.CommentsPositionEnum;
7374
+ /**
7375
+ * Gets or sets the width of the comment output area in pixels (Applies only if comments are displayed on the right).
7376
+ */
7377
+ commentsAreaWidth?: number;
7378
+ /**
7379
+ * Gets or sets the color of comments area (Applies only if comments are displayed on the right).
7380
+ */
7381
+ commentsAreaColor?: string;
7382
+ /**
7383
+ * True if comments that have no author are displayed. (Applies only if comments are displayed).
7384
+ */
7385
+ showCommentsByNoAuthor?: boolean;
6671
7386
  }
6672
- export declare namespace WaterfallSeries {
7387
+ export declare namespace TiffExportOptions {
7388
+ enum CompressionEnum {
7389
+ Default,
7390
+ None,
7391
+ CCITT3,
7392
+ CCITT4,
7393
+ LZW,
7394
+ RLE
7395
+ }
7396
+ enum PixelFormatEnum {
7397
+ Format1bppIndexed,
7398
+ Format4bppIndexed,
7399
+ Format8bppIndexed,
7400
+ Format24bppRgb,
7401
+ Format32bppArgb
7402
+ }
7403
+ enum NotesPositionEnum {
7404
+ None,
7405
+ BottomFull,
7406
+ BottomTruncated
7407
+ }
7408
+ enum CommentsPositionEnum {
7409
+ None,
7410
+ Bottom,
7411
+ Right
7412
+ }
6673
7413
  }
6674
7414
  /**
6675
7415
  * Zoom object.
@@ -6756,6 +7496,10 @@ export declare class AudioFrame extends GeometryShape {
6756
7496
  * Determines whether audio is automatically rewound to start after playing.
6757
7497
  */
6758
7498
  rewindAudio?: boolean;
7499
+ /**
7500
+ * Picture fill format.
7501
+ */
7502
+ pictureFillFormat?: PictureFill;
6759
7503
  }
6760
7504
  export declare namespace AudioFrame {
6761
7505
  enum PlayModeEnum {
@@ -6882,6 +7626,10 @@ export declare class VideoFrame extends GeometryShape {
6882
7626
  * Video data encoded in base64.
6883
7627
  */
6884
7628
  base64Data?: string;
7629
+ /**
7630
+ * Picture fill format.
7631
+ */
7632
+ pictureFillFormat?: PictureFill;
6885
7633
  }
6886
7634
  export declare namespace VideoFrame {
6887
7635
  enum PlayModeEnum {