docx-plus 0.0.6 → 0.0.7
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/README.md +3 -0
- package/dist/index.cjs +1670 -183
- package/dist/index.d.cts +413 -37
- package/dist/index.d.mts +413 -37
- package/dist/index.iife.js +1670 -183
- package/dist/index.mjs +1670 -183
- package/dist/index.umd.js +1670 -183
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -352,7 +352,7 @@ declare const CombineBracketsType: {
|
|
|
352
352
|
readonly ANGLE: "angle";
|
|
353
353
|
readonly CURLY: "curly";
|
|
354
354
|
};
|
|
355
|
-
interface
|
|
355
|
+
interface EastAsianLayoutOptions {
|
|
356
356
|
readonly id?: number;
|
|
357
357
|
readonly combine?: boolean;
|
|
358
358
|
readonly combineBrackets?: (typeof CombineBracketsType)[keyof typeof CombineBracketsType];
|
|
@@ -372,7 +372,7 @@ declare const createEmphasisMark: (emphasisMarkType?: (typeof EmphasisMarkType)[
|
|
|
372
372
|
declare const createDotEmphasisMark: () => XmlComponent;
|
|
373
373
|
//#endregion
|
|
374
374
|
//#region src/file/paragraph/run/formatting.d.ts
|
|
375
|
-
interface
|
|
375
|
+
interface ColorOptions {
|
|
376
376
|
readonly val?: string;
|
|
377
377
|
readonly themeColor?: (typeof ThemeColor)[keyof typeof ThemeColor];
|
|
378
378
|
readonly themeTint?: string;
|
|
@@ -456,7 +456,7 @@ declare const HighlightColor: {
|
|
|
456
456
|
readonly WHITE: "white";
|
|
457
457
|
readonly YELLOW: "yellow";
|
|
458
458
|
};
|
|
459
|
-
interface
|
|
459
|
+
interface RunStylePropertiesOptions {
|
|
460
460
|
readonly noProof?: boolean;
|
|
461
461
|
readonly bold?: boolean;
|
|
462
462
|
readonly boldComplexScript?: boolean;
|
|
@@ -470,7 +470,7 @@ interface IRunStylePropertiesOptions {
|
|
|
470
470
|
readonly emphasisMark?: {
|
|
471
471
|
readonly type?: (typeof EmphasisMarkType)[keyof typeof EmphasisMarkType];
|
|
472
472
|
};
|
|
473
|
-
readonly color?: string |
|
|
473
|
+
readonly color?: string | ColorOptions;
|
|
474
474
|
readonly kern?: number | PositiveUniversalMeasure;
|
|
475
475
|
readonly position?: UniversalMeasure;
|
|
476
476
|
readonly size?: number | PositiveUniversalMeasure;
|
|
@@ -502,11 +502,11 @@ interface IRunStylePropertiesOptions {
|
|
|
502
502
|
readonly webHidden?: boolean;
|
|
503
503
|
readonly fitText?: number;
|
|
504
504
|
readonly complexScript?: boolean;
|
|
505
|
-
readonly eastAsianLayout?:
|
|
505
|
+
readonly eastAsianLayout?: EastAsianLayoutOptions;
|
|
506
506
|
}
|
|
507
507
|
type IRunPropertiesOptions = {
|
|
508
508
|
readonly style?: string;
|
|
509
|
-
} &
|
|
509
|
+
} & RunStylePropertiesOptions;
|
|
510
510
|
type IRunPropertiesChangeOptions = {} & IRunPropertiesOptions & IChangedAttributesProperties;
|
|
511
511
|
type IParagraphRunPropertiesOptions = {
|
|
512
512
|
readonly insertion?: IChangedAttributesProperties;
|
|
@@ -545,7 +545,220 @@ interface DocPropertiesOptions {
|
|
|
545
545
|
readonly id?: string;
|
|
546
546
|
}
|
|
547
547
|
//#endregion
|
|
548
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/blip/source-rectangle.d.ts
|
|
549
|
+
interface SourceRectangleOptions {
|
|
550
|
+
readonly l?: number;
|
|
551
|
+
readonly t?: number;
|
|
552
|
+
readonly r?: number;
|
|
553
|
+
readonly b?: number;
|
|
554
|
+
}
|
|
555
|
+
//#endregion
|
|
556
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/color-transform.d.ts
|
|
557
|
+
interface ColorTransformOptions {
|
|
558
|
+
readonly tint?: number;
|
|
559
|
+
readonly shade?: number;
|
|
560
|
+
readonly comp?: boolean;
|
|
561
|
+
readonly inv?: boolean;
|
|
562
|
+
readonly gray?: boolean;
|
|
563
|
+
readonly alpha?: number;
|
|
564
|
+
readonly alphaOff?: number;
|
|
565
|
+
readonly alphaMod?: number;
|
|
566
|
+
readonly hue?: number;
|
|
567
|
+
readonly hueOff?: number;
|
|
568
|
+
readonly hueMod?: number;
|
|
569
|
+
readonly sat?: number;
|
|
570
|
+
readonly satOff?: number;
|
|
571
|
+
readonly satMod?: number;
|
|
572
|
+
readonly lum?: number;
|
|
573
|
+
readonly lumOff?: number;
|
|
574
|
+
readonly lumMod?: number;
|
|
575
|
+
readonly red?: number;
|
|
576
|
+
readonly redOff?: number;
|
|
577
|
+
readonly redMod?: number;
|
|
578
|
+
readonly green?: number;
|
|
579
|
+
readonly greenOff?: number;
|
|
580
|
+
readonly greenMod?: number;
|
|
581
|
+
readonly blue?: number;
|
|
582
|
+
readonly blueOff?: number;
|
|
583
|
+
readonly blueMod?: number;
|
|
584
|
+
readonly gamma?: boolean;
|
|
585
|
+
readonly invGamma?: boolean;
|
|
586
|
+
}
|
|
587
|
+
//#endregion
|
|
588
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/hsl-color.d.ts
|
|
589
|
+
interface HslColorOptions {
|
|
590
|
+
readonly hue: number;
|
|
591
|
+
readonly sat: number;
|
|
592
|
+
readonly lum: number;
|
|
593
|
+
readonly transforms?: ColorTransformOptions;
|
|
594
|
+
}
|
|
595
|
+
//#endregion
|
|
596
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/preset-color.d.ts
|
|
597
|
+
declare const PresetColor: {
|
|
598
|
+
readonly ALICE_BLUE: "aliceBlue";
|
|
599
|
+
readonly ANTIQUE_WHITE: "antiqueWhite";
|
|
600
|
+
readonly AQUA: "aqua";
|
|
601
|
+
readonly AQUAMARINE: "aquamarine";
|
|
602
|
+
readonly AZURE: "azure";
|
|
603
|
+
readonly BEIGE: "beige";
|
|
604
|
+
readonly BISQUE: "bisque";
|
|
605
|
+
readonly BLACK: "black";
|
|
606
|
+
readonly BLANCHED_ALMOND: "blanchedAlmond";
|
|
607
|
+
readonly BLUE: "blue";
|
|
608
|
+
readonly BLUE_VIOLET: "blueViolet";
|
|
609
|
+
readonly BROWN: "brown";
|
|
610
|
+
readonly BURLY_WOOD: "burlyWood";
|
|
611
|
+
readonly CADET_BLUE: "cadetBlue";
|
|
612
|
+
readonly CHARTREUSE: "chartreuse";
|
|
613
|
+
readonly CHOCOLATE: "chocolate";
|
|
614
|
+
readonly CORAL: "coral";
|
|
615
|
+
readonly CORNFLOWER_BLUE: "cornflowerBlue";
|
|
616
|
+
readonly CORNSILK: "cornsilk";
|
|
617
|
+
readonly CRIMSON: "crimson";
|
|
618
|
+
readonly CYAN: "cyan";
|
|
619
|
+
readonly DARK_BLUE: "darkBlue";
|
|
620
|
+
readonly DARK_CYAN: "darkCyan";
|
|
621
|
+
readonly DARK_GOLDENROD: "darkGoldenrod";
|
|
622
|
+
readonly DARK_GRAY: "darkGray";
|
|
623
|
+
readonly DARK_GREY: "darkGrey";
|
|
624
|
+
readonly DARK_GREEN: "darkGreen";
|
|
625
|
+
readonly DARK_KHAKI: "darkKhaki";
|
|
626
|
+
readonly DARK_MAGENTA: "darkMagenta";
|
|
627
|
+
readonly DARK_OLIVE_GREEN: "darkOliveGreen";
|
|
628
|
+
readonly DARK_ORANGE: "darkOrange";
|
|
629
|
+
readonly DARK_ORCHID: "darkOrchid";
|
|
630
|
+
readonly DARK_RED: "darkRed";
|
|
631
|
+
readonly DARK_SALMON: "darkSalmon";
|
|
632
|
+
readonly DARK_SEA_GREEN: "darkSeaGreen";
|
|
633
|
+
readonly DARK_SLATE_BLUE: "darkSlateBlue";
|
|
634
|
+
readonly DARK_SLATE_GRAY: "darkSlateGray";
|
|
635
|
+
readonly DARK_SLATE_GREY: "darkSlateGrey";
|
|
636
|
+
readonly DARK_TURQUOISE: "darkTurquoise";
|
|
637
|
+
readonly DARK_VIOLET: "darkViolet";
|
|
638
|
+
readonly DEEP_PINK: "deepPink";
|
|
639
|
+
readonly DEEP_SKY_BLUE: "deepSkyBlue";
|
|
640
|
+
readonly DIM_GRAY: "dimGray";
|
|
641
|
+
readonly DIM_GREY: "dimGrey";
|
|
642
|
+
readonly DODGER_BLUE: "dodgerBlue";
|
|
643
|
+
readonly FIREBRICK: "firebrick";
|
|
644
|
+
readonly FLORAL_WHITE: "floralWhite";
|
|
645
|
+
readonly FOREST_GREEN: "forestGreen";
|
|
646
|
+
readonly FUCHSIA: "fuchsia";
|
|
647
|
+
readonly GAINSBORO: "gainsboro";
|
|
648
|
+
readonly GHOST_WHITE: "ghostWhite";
|
|
649
|
+
readonly GOLD: "gold";
|
|
650
|
+
readonly GOLDENROD: "goldenrod";
|
|
651
|
+
readonly GRAY: "gray";
|
|
652
|
+
readonly GREY: "grey";
|
|
653
|
+
readonly GREEN: "green";
|
|
654
|
+
readonly GREEN_YELLOW: "greenYellow";
|
|
655
|
+
readonly HONEYDEW: "honeydew";
|
|
656
|
+
readonly HOT_PINK: "hotPink";
|
|
657
|
+
readonly INDIAN_RED: "indianRed";
|
|
658
|
+
readonly INDIGO: "indigo";
|
|
659
|
+
readonly IVORY: "ivory";
|
|
660
|
+
readonly KHAKI: "khaki";
|
|
661
|
+
readonly LAVENDER: "lavender";
|
|
662
|
+
readonly LAVENDER_BLUSH: "lavenderBlush";
|
|
663
|
+
readonly LAWN_GREEN: "lawnGreen";
|
|
664
|
+
readonly LEMON_CHIFFON: "lemonChiffon";
|
|
665
|
+
readonly LIGHT_BLUE: "lightBlue";
|
|
666
|
+
readonly LIGHT_CORAL: "lightCoral";
|
|
667
|
+
readonly LIGHT_CYAN: "lightCyan";
|
|
668
|
+
readonly LIGHT_GOLDENROD_YELLOW: "lightGoldenrodYellow";
|
|
669
|
+
readonly LIGHT_GRAY: "lightGray";
|
|
670
|
+
readonly LIGHT_GREY: "lightGrey";
|
|
671
|
+
readonly LIGHT_GREEN: "lightGreen";
|
|
672
|
+
readonly LIGHT_PINK: "lightPink";
|
|
673
|
+
readonly LIGHT_SALMON: "lightSalmon";
|
|
674
|
+
readonly LIGHT_SEA_GREEN: "lightSeaGreen";
|
|
675
|
+
readonly LIGHT_SKY_BLUE: "lightSkyBlue";
|
|
676
|
+
readonly LIGHT_SLATE_GRAY: "lightSlateGray";
|
|
677
|
+
readonly LIGHT_SLATE_GREY: "lightSlateGrey";
|
|
678
|
+
readonly LIGHT_STEEL_BLUE: "lightSteelBlue";
|
|
679
|
+
readonly LIGHT_YELLOW: "lightYellow";
|
|
680
|
+
readonly LIME: "lime";
|
|
681
|
+
readonly LIME_GREEN: "limeGreen";
|
|
682
|
+
readonly LINEN: "linen";
|
|
683
|
+
readonly MAGENTA: "magenta";
|
|
684
|
+
readonly MAROON: "maroon";
|
|
685
|
+
readonly MEDIUM_AQUAMARINE: "mediumAquamarine";
|
|
686
|
+
readonly MEDIUM_BLUE: "mediumBlue";
|
|
687
|
+
readonly MEDIUM_ORCHID: "mediumOrchid";
|
|
688
|
+
readonly MEDIUM_PURPLE: "mediumPurple";
|
|
689
|
+
readonly MEDIUM_SEA_GREEN: "mediumSeaGreen";
|
|
690
|
+
readonly MEDIUM_SLATE_BLUE: "mediumSlateBlue";
|
|
691
|
+
readonly MEDIUM_SPRING_GREEN: "mediumSpringGreen";
|
|
692
|
+
readonly MEDIUM_TURQUOISE: "mediumTurquoise";
|
|
693
|
+
readonly MEDIUM_VIOLET_RED: "mediumVioletRed";
|
|
694
|
+
readonly MIDNIGHT_BLUE: "midnightBlue";
|
|
695
|
+
readonly MINT_CREAM: "mintCream";
|
|
696
|
+
readonly MISTY_ROSE: "mistyRose";
|
|
697
|
+
readonly MOCCASIN: "moccasin";
|
|
698
|
+
readonly NAVAJO_WHITE: "navajoWhite";
|
|
699
|
+
readonly NAVY: "navy";
|
|
700
|
+
readonly OLD_LACE: "oldLace";
|
|
701
|
+
readonly OLIVE: "olive";
|
|
702
|
+
readonly OLIVE_DRAB: "oliveDrab";
|
|
703
|
+
readonly ORANGE: "orange";
|
|
704
|
+
readonly ORANGE_RED: "orangeRed";
|
|
705
|
+
readonly ORCHID: "orchid";
|
|
706
|
+
readonly PALE_GOLDENROD: "paleGoldenrod";
|
|
707
|
+
readonly PALE_GREEN: "paleGreen";
|
|
708
|
+
readonly PALE_TURQUOISE: "paleTurquoise";
|
|
709
|
+
readonly PALE_VIOLET_RED: "paleVioletRed";
|
|
710
|
+
readonly PAPAYA_WHIP: "papayaWhip";
|
|
711
|
+
readonly PEACH_PUFF: "peachPuff";
|
|
712
|
+
readonly PERU: "peru";
|
|
713
|
+
readonly PINK: "pink";
|
|
714
|
+
readonly PLUM: "plum";
|
|
715
|
+
readonly POWDER_BLUE: "powderBlue";
|
|
716
|
+
readonly PURPLE: "purple";
|
|
717
|
+
readonly RED: "red";
|
|
718
|
+
readonly ROSY_BROWN: "rosyBrown";
|
|
719
|
+
readonly ROYAL_BLUE: "royalBlue";
|
|
720
|
+
readonly SADDLE_BROWN: "saddleBrown";
|
|
721
|
+
readonly SALMON: "salmon";
|
|
722
|
+
readonly SANDY_BROWN: "sandyBrown";
|
|
723
|
+
readonly SEA_GREEN: "seaGreen";
|
|
724
|
+
readonly SEA_SHELL: "seaShell";
|
|
725
|
+
readonly SIENNA: "sienna";
|
|
726
|
+
readonly SILVER: "silver";
|
|
727
|
+
readonly SKY_BLUE: "skyBlue";
|
|
728
|
+
readonly SLATE_BLUE: "slateBlue";
|
|
729
|
+
readonly SLATE_GRAY: "slateGray";
|
|
730
|
+
readonly SLATE_GREY: "slateGrey";
|
|
731
|
+
readonly SNOW: "snow";
|
|
732
|
+
readonly SPRING_GREEN: "springGreen";
|
|
733
|
+
readonly STEEL_BLUE: "steelBlue";
|
|
734
|
+
readonly TAN: "tan";
|
|
735
|
+
readonly TEAL: "teal";
|
|
736
|
+
readonly THISTLE: "thistle";
|
|
737
|
+
readonly TOMATO: "tomato";
|
|
738
|
+
readonly TURQUOISE: "turquoise";
|
|
739
|
+
readonly VIOLET: "violet";
|
|
740
|
+
readonly WHEAT: "wheat";
|
|
741
|
+
readonly WHITE: "white";
|
|
742
|
+
readonly WHITE_SMOKE: "whiteSmoke";
|
|
743
|
+
readonly YELLOW: "yellow";
|
|
744
|
+
readonly YELLOW_GREEN: "yellowGreen";
|
|
745
|
+
};
|
|
746
|
+
interface PresetColorOptions {
|
|
747
|
+
readonly value: (typeof PresetColor)[keyof typeof PresetColor];
|
|
748
|
+
readonly transforms?: ColorTransformOptions;
|
|
749
|
+
}
|
|
750
|
+
//#endregion
|
|
751
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/rgb-color.d.ts
|
|
752
|
+
interface RgbColorOptions {
|
|
753
|
+
readonly value: string;
|
|
754
|
+
readonly transforms?: ColorTransformOptions;
|
|
755
|
+
}
|
|
756
|
+
//#endregion
|
|
548
757
|
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/scheme-color.d.ts
|
|
758
|
+
interface SchemeColorOptions {
|
|
759
|
+
readonly value: (typeof SchemeColor)[keyof typeof SchemeColor];
|
|
760
|
+
readonly transforms?: ColorTransformOptions;
|
|
761
|
+
}
|
|
549
762
|
declare const SchemeColor: {
|
|
550
763
|
readonly BG1: "bg1";
|
|
551
764
|
readonly TX1: "tx1";
|
|
@@ -566,6 +779,150 @@ declare const SchemeColor: {
|
|
|
566
779
|
readonly PHCLR: "phClr";
|
|
567
780
|
};
|
|
568
781
|
//#endregion
|
|
782
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/system-color.d.ts
|
|
783
|
+
declare const SystemColor: {
|
|
784
|
+
readonly SCROLL_BAR: "scrollBar";
|
|
785
|
+
readonly BACKGROUND: "background";
|
|
786
|
+
readonly ACTIVE_CAPTION: "activeCaption";
|
|
787
|
+
readonly INACTIVE_CAPTION: "inactiveCaption";
|
|
788
|
+
readonly MENU: "menu";
|
|
789
|
+
readonly WINDOW: "window";
|
|
790
|
+
readonly WINDOW_FRAME: "windowFrame";
|
|
791
|
+
readonly MENU_TEXT: "menuText";
|
|
792
|
+
readonly WINDOW_TEXT: "windowText";
|
|
793
|
+
readonly CAPTION_TEXT: "captionText";
|
|
794
|
+
readonly ACTIVE_BORDER: "activeBorder";
|
|
795
|
+
readonly INACTIVE_BORDER: "inactiveBorder";
|
|
796
|
+
readonly APP_WORKSPACE: "appWorkspace";
|
|
797
|
+
readonly HIGHLIGHT: "highlight";
|
|
798
|
+
readonly HIGHLIGHT_TEXT: "highlightText";
|
|
799
|
+
readonly BTN_FACE: "btnFace";
|
|
800
|
+
readonly BTN_SHADOW: "btnShadow";
|
|
801
|
+
readonly GRAY_TEXT: "grayText";
|
|
802
|
+
readonly BTN_TEXT: "btnText";
|
|
803
|
+
readonly INACTIVE_CAPTION_TEXT: "inactiveCaptionText";
|
|
804
|
+
readonly BTN_HIGHLIGHT: "btnHighlight";
|
|
805
|
+
readonly THREE_D_DK_SHADOW: "3dDkShadow";
|
|
806
|
+
readonly THREE_D_LIGHT: "3dLight";
|
|
807
|
+
readonly INFO_TEXT: "infoText";
|
|
808
|
+
readonly INFO_BK: "infoBk";
|
|
809
|
+
readonly HOT_LIGHT: "hotLight";
|
|
810
|
+
readonly GRADIENT_ACTIVE_CAPTION: "gradientActiveCaption";
|
|
811
|
+
readonly GRADIENT_INACTIVE_CAPTION: "gradientInactiveCaption";
|
|
812
|
+
readonly MENU_HIGHLIGHT: "menuHighlight";
|
|
813
|
+
readonly MENU_BAR: "menuBar";
|
|
814
|
+
};
|
|
815
|
+
interface SystemColorOptions {
|
|
816
|
+
readonly value: (typeof SystemColor)[keyof typeof SystemColor];
|
|
817
|
+
readonly lastClr?: string;
|
|
818
|
+
readonly transforms?: ColorTransformOptions;
|
|
819
|
+
}
|
|
820
|
+
//#endregion
|
|
821
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/solid-fill.d.ts
|
|
822
|
+
type SolidFillOptions = RgbColorOptions | SchemeColorOptions | HslColorOptions | SystemColorOptions | PresetColorOptions;
|
|
823
|
+
//#endregion
|
|
824
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/glow.d.ts
|
|
825
|
+
interface GlowEffectOptions {
|
|
826
|
+
readonly rad?: number;
|
|
827
|
+
readonly color: SolidFillOptions;
|
|
828
|
+
}
|
|
829
|
+
//#endregion
|
|
830
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/inner-shdw.d.ts
|
|
831
|
+
interface InnerShadowEffectOptions {
|
|
832
|
+
readonly blurRad?: number;
|
|
833
|
+
readonly dist?: number;
|
|
834
|
+
readonly dir?: number;
|
|
835
|
+
readonly color: SolidFillOptions;
|
|
836
|
+
}
|
|
837
|
+
//#endregion
|
|
838
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/outer-shdw.d.ts
|
|
839
|
+
declare const RectAlignment: {
|
|
840
|
+
readonly TOP_LEFT: "tl";
|
|
841
|
+
readonly TOP: "t";
|
|
842
|
+
readonly TOP_RIGHT: "tr";
|
|
843
|
+
readonly LEFT: "l";
|
|
844
|
+
readonly CENTER: "ctr";
|
|
845
|
+
readonly RIGHT: "r";
|
|
846
|
+
readonly BOTTOM_LEFT: "bl";
|
|
847
|
+
readonly BOTTOM: "b";
|
|
848
|
+
readonly BOTTOM_RIGHT: "br";
|
|
849
|
+
};
|
|
850
|
+
interface OuterShadowEffectOptions {
|
|
851
|
+
readonly blurRad?: number;
|
|
852
|
+
readonly dist?: number;
|
|
853
|
+
readonly dir?: number;
|
|
854
|
+
readonly sx?: number;
|
|
855
|
+
readonly sy?: number;
|
|
856
|
+
readonly kx?: number;
|
|
857
|
+
readonly ky?: number;
|
|
858
|
+
readonly algn?: keyof typeof RectAlignment;
|
|
859
|
+
readonly rotWithShape?: boolean;
|
|
860
|
+
readonly color: SolidFillOptions;
|
|
861
|
+
}
|
|
862
|
+
//#endregion
|
|
863
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/prst-shdw.d.ts
|
|
864
|
+
declare const PresetShadowVal: {
|
|
865
|
+
readonly SHDW1: "shdw1";
|
|
866
|
+
readonly SHDW2: "shdw2";
|
|
867
|
+
readonly SHDW3: "shdw3";
|
|
868
|
+
readonly SHDW4: "shdw4";
|
|
869
|
+
readonly SHDW5: "shdw5";
|
|
870
|
+
readonly SHDW6: "shdw6";
|
|
871
|
+
readonly SHDW7: "shdw7";
|
|
872
|
+
readonly SHDW8: "shdw8";
|
|
873
|
+
readonly SHDW9: "shdw9";
|
|
874
|
+
readonly SHDW10: "shdw10";
|
|
875
|
+
readonly SHDW11: "shdw11";
|
|
876
|
+
readonly SHDW12: "shdw12";
|
|
877
|
+
readonly SHDW13: "shdw13";
|
|
878
|
+
readonly SHDW14: "shdw14";
|
|
879
|
+
readonly SHDW15: "shdw15";
|
|
880
|
+
readonly SHDW16: "shdw16";
|
|
881
|
+
readonly SHDW17: "shdw17";
|
|
882
|
+
readonly SHDW18: "shdw18";
|
|
883
|
+
readonly SHDW19: "shdw19";
|
|
884
|
+
readonly SHDW20: "shdw20";
|
|
885
|
+
};
|
|
886
|
+
interface PresetShadowEffectOptions {
|
|
887
|
+
readonly prst: keyof typeof PresetShadowVal;
|
|
888
|
+
readonly dist?: number;
|
|
889
|
+
readonly dir?: number;
|
|
890
|
+
readonly color: SolidFillOptions;
|
|
891
|
+
}
|
|
892
|
+
//#endregion
|
|
893
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/reflection.d.ts
|
|
894
|
+
interface ReflectionEffectOptions {
|
|
895
|
+
readonly blurRad?: number;
|
|
896
|
+
readonly stA?: number;
|
|
897
|
+
readonly stPos?: number;
|
|
898
|
+
readonly endA?: number;
|
|
899
|
+
readonly endPos?: number;
|
|
900
|
+
readonly dist?: number;
|
|
901
|
+
readonly dir?: number;
|
|
902
|
+
readonly fadeDir?: number;
|
|
903
|
+
readonly sx?: number;
|
|
904
|
+
readonly sy?: number;
|
|
905
|
+
readonly kx?: number;
|
|
906
|
+
readonly ky?: number;
|
|
907
|
+
readonly algn?: string;
|
|
908
|
+
readonly rotWithShape?: boolean;
|
|
909
|
+
}
|
|
910
|
+
//#endregion
|
|
911
|
+
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/effects/effect-list.d.ts
|
|
912
|
+
interface BlurEffectOptions {
|
|
913
|
+
readonly rad?: number;
|
|
914
|
+
readonly grow?: boolean;
|
|
915
|
+
}
|
|
916
|
+
interface EffectListOptions {
|
|
917
|
+
readonly blur?: BlurEffectOptions;
|
|
918
|
+
readonly glow?: GlowEffectOptions;
|
|
919
|
+
readonly innerShdw?: InnerShadowEffectOptions;
|
|
920
|
+
readonly outerShdw?: OuterShadowEffectOptions;
|
|
921
|
+
readonly prstShdw?: PresetShadowEffectOptions;
|
|
922
|
+
readonly reflection?: ReflectionEffectOptions | true;
|
|
923
|
+
readonly softEdge?: number;
|
|
924
|
+
}
|
|
925
|
+
//#endregion
|
|
569
926
|
//#region src/file/drawing/inline/graphic/graphic-data/pic/shape-properties/outline/outline.d.ts
|
|
570
927
|
declare const LineCap: {
|
|
571
928
|
readonly ROUND: "rnd";
|
|
@@ -583,39 +940,52 @@ declare const PenAlignment: {
|
|
|
583
940
|
readonly CENTER: "ctr";
|
|
584
941
|
readonly INSET: "in";
|
|
585
942
|
};
|
|
943
|
+
declare const PresetDash: {
|
|
944
|
+
readonly SOLID: "solid";
|
|
945
|
+
readonly DOT: "dot";
|
|
946
|
+
readonly DASH: "dash";
|
|
947
|
+
readonly LG_DASH: "lgDash";
|
|
948
|
+
readonly DASH_DOT: "dashDot";
|
|
949
|
+
readonly LG_DASH_DOT: "lgDashDot";
|
|
950
|
+
readonly LG_DASH_DOT_DOT: "lgDashDotDot";
|
|
951
|
+
readonly SYS_DASH: "sysDash";
|
|
952
|
+
readonly SYS_DOT: "sysDot";
|
|
953
|
+
readonly SYS_DASH_DOT: "sysDashDot";
|
|
954
|
+
readonly SYS_DASH_DOT_DOT: "sysDashDotDot";
|
|
955
|
+
};
|
|
956
|
+
declare const LineJoin: {
|
|
957
|
+
readonly ROUND: "round";
|
|
958
|
+
readonly BEVEL: "bevel";
|
|
959
|
+
readonly MITER: "miter";
|
|
960
|
+
};
|
|
586
961
|
interface OutlineAttributes {
|
|
587
962
|
readonly width?: number;
|
|
588
963
|
readonly cap?: keyof typeof LineCap;
|
|
589
964
|
readonly compoundLine?: keyof typeof CompoundLine;
|
|
590
965
|
readonly align?: keyof typeof PenAlignment;
|
|
966
|
+
readonly dash?: keyof typeof PresetDash;
|
|
967
|
+
readonly join?: keyof typeof LineJoin;
|
|
968
|
+
readonly miterLimit?: number;
|
|
591
969
|
}
|
|
592
970
|
interface OutlineNoFill {
|
|
593
971
|
readonly type: "noFill";
|
|
594
972
|
}
|
|
595
|
-
interface
|
|
596
|
-
readonly type: "solidFill";
|
|
597
|
-
readonly solidFillType: "rgb";
|
|
598
|
-
readonly value: string;
|
|
599
|
-
}
|
|
600
|
-
interface OutlineSchemeSolidFill {
|
|
973
|
+
interface OutlineSolidFill {
|
|
601
974
|
readonly type: "solidFill";
|
|
602
|
-
readonly
|
|
603
|
-
readonly value: (typeof SchemeColor)[keyof typeof SchemeColor];
|
|
975
|
+
readonly color: SolidFillOptions;
|
|
604
976
|
}
|
|
605
|
-
type OutlineSolidFill = OutlineRgbSolidFill | OutlineSchemeSolidFill;
|
|
606
977
|
type OutlineFillProperties = OutlineNoFill | OutlineSolidFill;
|
|
607
978
|
type OutlineOptions = OutlineAttributes & OutlineFillProperties;
|
|
608
979
|
//#endregion
|
|
609
|
-
//#region src/file/drawing/inline/graphic/graphic-data/
|
|
610
|
-
interface
|
|
611
|
-
readonly
|
|
612
|
-
readonly
|
|
980
|
+
//#region src/file/drawing/inline/graphic/graphic-data/wpg/wpg-group.d.ts
|
|
981
|
+
interface IChildOffset {
|
|
982
|
+
readonly x: number;
|
|
983
|
+
readonly y: number;
|
|
613
984
|
}
|
|
614
|
-
interface
|
|
615
|
-
readonly
|
|
616
|
-
readonly
|
|
985
|
+
interface IChildExtent {
|
|
986
|
+
readonly cx: number;
|
|
987
|
+
readonly cy: number;
|
|
617
988
|
}
|
|
618
|
-
type SolidFillOptions = RgbColorOptions | SchemeColorOptions;
|
|
619
989
|
//#endregion
|
|
620
990
|
//#region src/file/drawing/text-wrap/text-wrapping.d.ts
|
|
621
991
|
declare const TextWrappingType: {
|
|
@@ -791,6 +1161,7 @@ interface CoreMediaData {
|
|
|
791
1161
|
readonly fileName: string;
|
|
792
1162
|
readonly transformation: IMediaDataTransformation;
|
|
793
1163
|
readonly data: Uint8Array;
|
|
1164
|
+
readonly srcRect?: SourceRectangleOptions;
|
|
794
1165
|
}
|
|
795
1166
|
interface RegularMediaData {
|
|
796
1167
|
readonly type: "jpg" | "png" | "gif" | "bmp";
|
|
@@ -813,6 +1184,10 @@ interface WpgMediaData {
|
|
|
813
1184
|
readonly type: "wpg";
|
|
814
1185
|
readonly transformation: IMediaDataTransformation;
|
|
815
1186
|
readonly children: readonly IGroupChildMediaData[];
|
|
1187
|
+
readonly chOff?: IChildOffset;
|
|
1188
|
+
readonly chExt?: IChildExtent;
|
|
1189
|
+
readonly solidFill?: SolidFillOptions;
|
|
1190
|
+
readonly effects?: EffectListOptions;
|
|
816
1191
|
}
|
|
817
1192
|
type IExtendedMediaData = IMediaData | WpsMediaData | WpgMediaData;
|
|
818
1193
|
type IMediaData = (RegularMediaData | SvgMediaData) & CoreMediaData;
|
|
@@ -863,6 +1238,7 @@ interface CoreImageOptions {
|
|
|
863
1238
|
readonly altText?: DocPropertiesOptions;
|
|
864
1239
|
readonly outline?: OutlineOptions;
|
|
865
1240
|
readonly solidFill?: SolidFillOptions;
|
|
1241
|
+
readonly srcRect?: SourceRectangleOptions;
|
|
866
1242
|
}
|
|
867
1243
|
interface RegularImageOptions {
|
|
868
1244
|
readonly type: "jpg" | "png" | "gif" | "bmp";
|
|
@@ -1540,16 +1916,16 @@ declare const NumberRestartType: {
|
|
|
1540
1916
|
readonly EACH_SECT: "eachSect";
|
|
1541
1917
|
readonly EACH_PAGE: "eachPage";
|
|
1542
1918
|
};
|
|
1543
|
-
interface
|
|
1919
|
+
interface NumberPropertiesOptions {
|
|
1544
1920
|
readonly formatType?: (typeof NumberFormat)[keyof typeof NumberFormat];
|
|
1545
1921
|
readonly format?: string;
|
|
1546
1922
|
readonly numStart?: number;
|
|
1547
1923
|
readonly numRestart?: (typeof NumberRestartType)[keyof typeof NumberRestartType];
|
|
1548
1924
|
}
|
|
1549
|
-
interface
|
|
1925
|
+
interface FootnotePropertiesOptions extends NumberPropertiesOptions {
|
|
1550
1926
|
readonly pos?: (typeof FootnotePositionType)[keyof typeof FootnotePositionType];
|
|
1551
1927
|
}
|
|
1552
|
-
interface
|
|
1928
|
+
interface EndnotePropertiesOptions extends NumberPropertiesOptions {
|
|
1553
1929
|
readonly pos?: (typeof EndnotePositionType)[keyof typeof EndnotePositionType];
|
|
1554
1930
|
}
|
|
1555
1931
|
//#endregion
|
|
@@ -1701,8 +2077,8 @@ interface ISectionPropertiesOptionsBase {
|
|
|
1701
2077
|
readonly first?: number;
|
|
1702
2078
|
readonly other?: number;
|
|
1703
2079
|
};
|
|
1704
|
-
readonly footnotePr?:
|
|
1705
|
-
readonly endnotePr?:
|
|
2080
|
+
readonly footnotePr?: FootnotePropertiesOptions;
|
|
2081
|
+
readonly endnotePr?: EndnotePropertiesOptions;
|
|
1706
2082
|
}
|
|
1707
2083
|
type ISectionPropertiesChangeOptions = IChangedAttributesProperties & ISectionPropertiesOptionsBase;
|
|
1708
2084
|
type ISectionPropertiesOptions = {
|
|
@@ -2264,7 +2640,7 @@ declare const TextboxTightWrapType: {
|
|
|
2264
2640
|
readonly FIRST_LINE_ONLY: "firstLineOnly";
|
|
2265
2641
|
readonly LAST_LINE_ONLY: "lastLineOnly";
|
|
2266
2642
|
};
|
|
2267
|
-
interface
|
|
2643
|
+
interface LevelParagraphStylePropertiesOptions {
|
|
2268
2644
|
readonly alignment?: (typeof AlignmentType)[keyof typeof AlignmentType];
|
|
2269
2645
|
readonly thematicBreak?: boolean;
|
|
2270
2646
|
readonly contextualSpacing?: boolean;
|
|
@@ -2285,7 +2661,7 @@ type IParagraphStylePropertiesOptions = {
|
|
|
2285
2661
|
readonly instance?: number;
|
|
2286
2662
|
readonly custom?: boolean;
|
|
2287
2663
|
} | false;
|
|
2288
|
-
} &
|
|
2664
|
+
} & LevelParagraphStylePropertiesOptions;
|
|
2289
2665
|
type IParagraphPropertiesOptionsBase = {
|
|
2290
2666
|
readonly heading?: (typeof HeadingLevel)[keyof typeof HeadingLevel];
|
|
2291
2667
|
readonly bidirectional?: boolean;
|
|
@@ -2408,8 +2784,8 @@ interface ILevelsOptions {
|
|
|
2408
2784
|
readonly suffix?: (typeof LevelSuffix)[keyof typeof LevelSuffix];
|
|
2409
2785
|
readonly isLegalNumberingStyle?: boolean;
|
|
2410
2786
|
readonly style?: {
|
|
2411
|
-
readonly run?:
|
|
2412
|
-
readonly paragraph?:
|
|
2787
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2788
|
+
readonly paragraph?: LevelParagraphStylePropertiesOptions;
|
|
2413
2789
|
};
|
|
2414
2790
|
}
|
|
2415
2791
|
declare class LevelBase extends XmlComponent {
|
|
@@ -2484,13 +2860,13 @@ declare class ParagraphPropertiesDefaults extends XmlComponent {
|
|
|
2484
2860
|
//#endregion
|
|
2485
2861
|
//#region src/file/styles/defaults/run-properties.d.ts
|
|
2486
2862
|
declare class RunPropertiesDefaults extends XmlComponent {
|
|
2487
|
-
constructor(options?:
|
|
2863
|
+
constructor(options?: RunStylePropertiesOptions);
|
|
2488
2864
|
}
|
|
2489
2865
|
//#endregion
|
|
2490
2866
|
//#region src/file/styles/defaults/document-defaults.d.ts
|
|
2491
2867
|
interface IDocumentDefaultsOptions {
|
|
2492
2868
|
readonly paragraph?: IParagraphStylePropertiesOptions;
|
|
2493
|
-
readonly run?:
|
|
2869
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2494
2870
|
}
|
|
2495
2871
|
declare class DocumentDefaults extends XmlComponent {
|
|
2496
2872
|
private readonly runPropertiesDefaults;
|
|
@@ -2522,7 +2898,7 @@ declare class Style extends XmlComponent {
|
|
|
2522
2898
|
//#region src/file/styles/style/paragraph-style.d.ts
|
|
2523
2899
|
type IBaseParagraphStyleOptions = {
|
|
2524
2900
|
readonly paragraph?: IParagraphStylePropertiesOptions;
|
|
2525
|
-
readonly run?:
|
|
2901
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2526
2902
|
} & IStyleOptions;
|
|
2527
2903
|
type IParagraphStyleOptions = {
|
|
2528
2904
|
readonly id: string;
|
|
@@ -2535,7 +2911,7 @@ declare class StyleForParagraph extends Style {
|
|
|
2535
2911
|
//#endregion
|
|
2536
2912
|
//#region src/file/styles/style/character-style.d.ts
|
|
2537
2913
|
type IBaseCharacterStyleOptions = {
|
|
2538
|
-
readonly run?:
|
|
2914
|
+
readonly run?: RunStylePropertiesOptions;
|
|
2539
2915
|
} & IStyleOptions;
|
|
2540
2916
|
type ICharacterStyleOptions = {
|
|
2541
2917
|
readonly id: string;
|
|
@@ -3405,4 +3781,4 @@ declare const patchDetector: ({
|
|
|
3405
3781
|
data
|
|
3406
3782
|
}: PatchDetectorOptions) => Promise<readonly string[]>;
|
|
3407
3783
|
//#endregion
|
|
3408
|
-
export { AbstractNumbering, AlignmentType, AnnotationReference, AttributeData, AttributeMap, AttributePayload, Attributes, BaseXmlComponent, Body, Bookmark, BookmarkEnd, BookmarkStart, Border, BorderStyle, BuilderElement, CarriageReturn, CellMerge, CellMergeAttributes, CharacterSet, CheckBox, CheckBoxSymbolElement, CheckBoxUtil, Column, ColumnBreak, Comment, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, ConcreteHyperlink, ConcreteNumbering, ContinuationSeparator, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentAttributes, DocumentBackground, DocumentBackgroundAttributes, DocumentDefaults, DocumentGridType, Drawing, DropCapType, EMPTY_OBJECT, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, EndnoteReferenceRunAttributes, Endnotes, ExternalHyperlink, FileChild, FootNoteReferenceRunAttributes, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterReferenceType, HeaderFooterType, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionRelativeFrom, HpsMeasureElement, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, IBodyPropertiesOptions, IBookmarkOptions, IBorderOptions, IBordersOptions, ICellMergeAttributes, ICharacterStyleOptions, ICheckboxSymbolOptions, ICheckboxSymbolProperties, IColumnAttributes, IColumnsAttributes, ICommentOptions, ICommentsOptions, IConcreteNumberingOptions, IContext, IDistance, IDocGridAttributesProperties, IDocumentAttributesProperties, IDocumentBackgroundOptions, IDocumentDefaultsOptions, IDocumentFooter, IDocumentHeader, IDocumentOptions, IDrawingOptions, IExtendedMediaData, IExternalHyperlinkOptions, IFloating, IFontAttributesProperties, IFrameOptions, IGroupChildMediaData, IHeaderFooterGroup, IHeaderFooterOptions, IHeaderOptions, IHorizontalPositionOptions, IImageOptions, IIndentAttributesProperties, IInternalHyperlinkOptions,
|
|
3784
|
+
export { AbstractNumbering, AlignmentType, AnnotationReference, AttributeData, AttributeMap, AttributePayload, Attributes, BaseXmlComponent, Body, Bookmark, BookmarkEnd, BookmarkStart, Border, BorderStyle, BuilderElement, CarriageReturn, CellMerge, CellMergeAttributes, CharacterSet, CheckBox, CheckBoxSymbolElement, CheckBoxUtil, Column, ColumnBreak, Comment, CommentRangeEnd, CommentRangeStart, CommentReference, Comments, ConcreteHyperlink, ConcreteNumbering, ContinuationSeparator, DayLong, DayShort, DeletedTableCell, DeletedTableRow, DeletedTextRun, File as Document, File, DocumentAttributeNamespace, DocumentAttributeNamespaces, DocumentAttributes, DocumentBackground, DocumentBackgroundAttributes, DocumentDefaults, DocumentGridType, Drawing, DropCapType, EMPTY_OBJECT, EmphasisMarkType, EmptyElement, EndnoteIdReference, EndnoteReference, EndnoteReferenceRun, EndnoteReferenceRunAttributes, Endnotes, ExternalHyperlink, FileChild, FootNoteReferenceRunAttributes, FootNotes, Footer, FooterWrapper, FootnoteReference, FootnoteReferenceElement, FootnoteReferenceRun, FrameAnchorType, FrameWrap, GridSpan, Header, HeaderFooterReferenceType, HeaderFooterType, HeaderWrapper, HeadingLevel, HeightRule, HighlightColor, HorizontalPositionAlign, HorizontalPositionRelativeFrom, HpsMeasureElement, HyperlinkType, IAlignmentFrameOptions, IBaseCharacterStyleOptions, IBaseParagraphStyleOptions, IBodyPropertiesOptions, IBookmarkOptions, IBorderOptions, IBordersOptions, ICellMergeAttributes, ICharacterStyleOptions, ICheckboxSymbolOptions, ICheckboxSymbolProperties, IColumnAttributes, IColumnsAttributes, ICommentOptions, ICommentsOptions, IConcreteNumberingOptions, IContext, IDistance, IDocGridAttributesProperties, IDocumentAttributesProperties, IDocumentBackgroundOptions, IDocumentDefaultsOptions, IDocumentFooter, IDocumentHeader, IDocumentOptions, IDrawingOptions, IExtendedMediaData, IExternalHyperlinkOptions, IFloating, IFontAttributesProperties, IFrameOptions, IGroupChildMediaData, IHeaderFooterGroup, IHeaderFooterOptions, IHeaderOptions, IHorizontalPositionOptions, IImageOptions, IIndentAttributesProperties, IInternalHyperlinkOptions, ILevelsOptions, ILineNumberAttributes, IMargins, IMathFractionOptions, IMathFunctionOptions, IMathIntegralOptions, IMathLimitLowerOptions, IMathLimitUpperOptions, IMathOptions, IMathPreSubSuperScriptOptions, IMathRadicalOptions, IMathSubScriptOptions, IMathSubSuperScriptOptions, IMathSumOptions, IMathSuperScriptOptions, IMediaData, IMediaDataTransformation, IMediaTransformation, INumberedItemReferenceOptions, INumberingOptions, IPageBorderAttributes, IPageBordersOptions, IPageMarginAttributes, IPageNumberTypeAttributes, IPageReferenceOptions, IPageSizeAttributes, IParagraphOptions, IParagraphPropertiesChangeOptions, IParagraphPropertiesOptions, IParagraphPropertiesOptionsBase, IParagraphRunOptions, IParagraphRunPropertiesOptions, IParagraphStyleOptions, IParagraphStylePropertiesOptions, IPatch, type IPropertiesOptions, IRunOptions, IRunPropertiesChangeOptions, IRunPropertiesOptions, ISectionOptions, ISectionPropertiesChangeOptions, ISectionPropertiesOptions, ISectionPropertiesOptionsBase, IShadingAttributesProperties, ISpacingProperties, IStylesOptions, ISymbolRunOptions, ITableBordersOptions, ITableCellBorders, ITableCellOptions, ITableFloatOptions, ITableLookOptions, ITableOfContentsOptions, ITableOptions, ITablePropertiesChangeOptions, ITablePropertiesOptions, ITablePropertiesOptionsBase, ITableRowOptions, ITableRowPropertiesChangeOptions, ITableRowPropertiesOptions, ITableRowPropertiesOptionsBase, ITableWidthProperties, ITextWrapping, IVerticalPositionOptions, IWpgGroupOptions, IWpsShapeOptions, IXYFrameOptions, IXmlAttribute, IXmlableObject, IgnoreIfEmptyXmlComponent, ImageRun, ImportedRootElementAttributes, ImportedXmlComponent, InitializableXmlComponent, InputDataType, InsertedTableCell, InsertedTableRow, InsertedTextRun, InternalHyperlink, LastRenderedPageBreak, LeaderType, Level, LevelBase, LevelForOverride, LevelFormat, LevelOverride, LevelParagraphStylePropertiesOptions, LevelSuffix, LineNumberRestartFormat, LineRuleType, Math, MathAngledBrackets, MathComponent, MathCurlyBrackets, MathDegree, MathDenominator, MathFraction, MathFunction, MathFunctionName, MathFunctionProperties, MathIntegral, MathLimit, MathLimitLower, MathLimitUpper, MathNumerator, MathPreSubSuperScript, MathRadical, MathRadicalProperties, MathRoundBrackets, MathRun, MathSquareBrackets, MathSubScript, MathSubSuperScript, MathSum, MathSuperScript, Media, MonthLong, MonthShort, NextAttributeComponent, NoBreakHyphen, NumberFormat, NumberProperties, NumberValueElement, NumberedItemReference, NumberedItemReferenceFormat, Numbering, OnOffElement, OutputByType, OutputType, OverlapType, Packer, PageBorderDisplay, PageBorderOffsetFrom, PageBorderZOrder, PageBorders, PageBreak, PageBreakBefore, PageNumber, PageNumberElement, PageNumberSeparator, PageOrientation, PageReference, PageTextDirection, PageTextDirectionType, Paragraph, ParagraphChild, ParagraphProperties, ParagraphPropertiesChange, ParagraphPropertiesDefaults, ParagraphRunProperties, PatchDocumentOptions, PatchDocumentOutputType, PatchType, Percentage, PositionalTab, PositionalTabAlignment, PositionalTabLeader, PositionalTabOptions, PositionalTabRelativeTo, PositivePercentage, PositiveUniversalMeasure, PrettifyType, RelativeHorizontalPosition, RelativeMeasure, RelativeVerticalPosition, Run, RunProperties, RunPropertiesChange, RunPropertiesDefaults, RunStylePropertiesOptions, SectionProperties, SectionPropertiesChange, SectionType, SectionVerticalAlign, Separator, SequentialIdentifier, ShadingType, SimpleField, SimpleMailMergeField, SoftHyphen, SpaceType, StringContainer, StringEnumValueElement, StringValueElement, StyleForCharacter, StyleForParagraph, StyleLevel, Styles, SymbolRun, TDirection, Tab, TabStopDefinition, TabStopPosition, TabStopType, Table, TableAnchorType, TableBorders, TableCell, TableCellBorders, TableLayoutType, TableOfContents, TableProperties, TableRow, TableRowProperties, TableRowPropertiesChange, TableVerticalAlign, TextAlignmentType, TextDirection, TextEffect, TextRun, TextWrappingSide, TextWrappingType, Textbox, TextboxTightWrapType, ThematicBreak, ThemeColor, ThemeFont, UnderlineType, UniqueNumericIdCreator, UniversalMeasure, VerticalAlign, VerticalAlignSection, VerticalAlignTable, VerticalAnchor, VerticalMerge, VerticalMergeRevisionType, VerticalMergeType, VerticalPositionAlign, VerticalPositionRelativeFrom, WORKAROUND2, WORKAROUND3, WORKAROUND4, WidthType, WpgCommonMediaData, WpgGroupRun, WpgMediaData, WpsMediaData, WpsShapeRun, XmlAttributeComponent, XmlComponent, YearLong, YearShort, abstractNumUniqueNumericIdGen, bookmarkUniqueNumericIdGen, concreteNumUniqueNumericIdGen, convertInchesToTwip, convertMillimetersToTwip, convertOutput, convertToXmlComponent, createAlignment, createBodyProperties, createBorderElement, createColumns, createDocumentGrid, createDotEmphasisMark, createEmphasisMark, createFrameProperties, createHeaderFooterReference, createHorizontalPosition, createIndent, createLineNumberType, createMathAccentCharacter, createMathBase, createMathLimitLocation, createMathNAryProperties, createMathPreSubSuperScriptProperties, createMathSubScriptElement, createMathSubScriptProperties, createMathSubSuperScriptProperties, createMathSuperScriptElement, createMathSuperScriptProperties, createOutlineLevel, createPageMargin, createPageNumberType, createPageSize, createParagraphStyle, createRunFonts, createSectionType, createShading, createSimplePos, createSpacing, createStringElement, createTabStop, createTabStopItem, createTableFloatProperties, createTableLayout, createTableLook, createTableRowHeight, createTableWidthElement, createTransformation, createUnderline, createVerticalAlign, createVerticalPosition, createWrapNone, createWrapSquare, createWrapTight, createWrapTopAndBottom, dateTimeValue, decimalNumber, docPropertiesUniqueNumericIdGen, eighthPointMeasureValue, hashedId, hexColorValue, hpsMeasureValue, longHexNumber, measurementOrPercentValue, patchDetector, patchDocument, percentageValue, pointMeasureValue, positiveUniversalMeasureValue, sectionMarginDefaults, sectionPageSizeDefaults, shortHexNumber, signedHpsMeasureValue, signedTwipsMeasureValue, twipsMeasureValue, uCharHexNumber, uniqueId, uniqueNumericIdCreator, uniqueUuid, universalMeasureValue, unsignedDecimalNumber };
|