docx_rust/formatting/border/
border_style.rs

1use crate::__string_enum;
2
3#[derive(Debug, Clone, Default)]
4#[cfg_attr(test, derive(PartialEq))]
5pub enum BorderStyle {
6    Nil, //No Border
7    #[default]
8    None, //No Border
9    Single, //Single Line Border
10    Thick, //Single Line Border
11    Double, //Double Line Border
12    Dotted, //Dotted Line Border
13    Dashed, //Dashed Line Border
14    DotDash, //Dot Dash Line Border
15    DotDotDash, //Dot Dot Dash Line Border
16    Triple, //Triple Line Border
17    ThinThickSmallGap, //Thin, Thick Line Border
18    ThickThinSmallGap, //Thick, Thin Line Border
19    ThinThickThinSmallGap, //Thin, Thick, Thin Line Border
20    ThinThickMediumGap, //Thin, Thick Line Border
21    ThickThinMediumGap, //Thick, Thin Line Border
22    ThinThickThinMediumGap, //Thin, Thick, Thin Line Border
23    ThinThickLargeGap, //Thin, Thick Line Border
24    ThickThinLargeGap, //Thick, Thin Line Border
25    ThinThickThinLargeGap, //Thin, Thick, Thin Line Border
26    Wave, //Wavy Line Border
27    DoubleWave, //Double Wave Line Border
28    DashSmallGap, //Dashed Line Border
29    DashDotStroked, //Dash Dot Strokes Line Border
30    ThreeDEmboss, //3D Embossed Line Border
31    ThreeDEngrave, //3D Engraved Line Border
32    Outset, //Outset Line Border
33    Inset, //Inset Line Border
34    Apples, //Apples Art Border
35    ArchedScallops, //Arched Scallops Art Border
36    BabyPacifier, //Baby Pacifier Art Border
37    BabyRattle, //Baby Rattle Art Border
38    Balloons3Colors, //Three Color Balloons Art Border
39    BalloonsHotAir, //Hot Air Balloons Art Border
40    BasicBlackDashes, //Black Dash Art Border
41    BasicBlackDots, //Black Dot Art Border
42    BasicBlackSquares, //Black Square Art Border
43    BasicThinLines, //Thin Line Art Border
44    BasicWhiteDashes, //White Dash Art Border
45    BasicWhiteDots, //White Dot Art Border
46    BasicWhiteSquares, //White Square Art Border
47    BasicWideInline, //Wide Inline Art Border
48    BasicWideMidline, //Wide Midline Art Border
49    BasicWideOutline, //Wide Outline Art Border
50    Bats, //Bats Art Border
51    Birds, //Birds Art Border
52    BirdsFlight, //Birds Flying Art Border
53    Cabins, //Cabin Art Border
54    CakeSlice, //Cake Art Border
55    CandyCorn, //Candy Corn Art Border
56    CelticKnotwork, //Knot Work Art Border
57    CertificateBanner, //Certificate Banner Art Border
58    ChainLink, //Chain Link Art Border
59    ChampagneBottle, //Champagne Bottle Art Border
60    CheckedBarBlack, //Black And White Bar Art Border
61    CheckedBarColor, //Color Checked Bar Art Border
62    Checkered, //Checkerboard Art Border
63    ChristmasTree, //Christmas Tree Art Border
64    CirclesLines, //Circles And Lines Art Border
65    CirclesRectangles, //Circles And Rectangles Art Border
66    ClassicalWave, //Wave Art Border
67    Clocks, //Clocks Art Border
68    Compass, //Compass Art Border
69    Confetti, //Confetti Art Border
70    ConfettiGrays, //Confetti Art Border
71    ConfettiOutline, //Confetti Art Border
72    ConfettiStreamers, //Confetti Streamers Art Border
73    ConfettiWhite, //Confetti Art Border
74    CornerTriangles, //Corner Triangle Art Border
75    CouponCutoutDashes, //Dashed Line Art Border
76    CouponCutoutDots, //Dotted Line Art Border
77    CrazyMaze, //Maze Art Border
78    CreaturesButterfly, //Butterfly Art Border
79    CreaturesFish, //Fish Art Border
80    CreaturesInsects, //Insects Art Border
81    CreaturesLadyBug, //Ladybug Art Border
82    CrossStitch, //Cross-Stitch Art Border
83    Cup, //Cupid Art Border
84    DecoArch, //Archway Art Border
85    DecoArchColor, //Color Archway Art Border
86    DecoBlocks, //Blocks Art Border
87    DiamondsGray, //Gray Diamond Art Border
88    DoubleD, //Double D Art Border
89    DoubleDiamonds, //Diamond Art Border
90    Earth1, //Earth Art Border
91    Earth2, //Earth Art Border
92    EclipsingSquares1, //Shadowed Square Art Border
93    EclipsingSquares2, //Shadowed Square Art Border
94    EggsBlack, //Painted Egg Art Border
95    Fans, //Fans Art Border
96    Film, //Film Reel Art Border
97    Firecrackers, //Firecracker Art Border
98    FlowersBlockPrint, //Flowers Art Border
99    FlowersDaisies, //Daisy Art Border
100    FlowersModern1, //Flowers Art Border
101    FlowersModern2, //Flowers Art Border
102    FlowersPansy, //Pansy Art Border
103    FlowersRedRose, //Red Rose Art Border
104    FlowersRoses, //Roses Art Border
105    FlowersTeacup, //Flowers In A Teacup Art Border
106    FlowersTiny, //Small Flower Art Border
107    Gems, //Gems Art Border
108    GingerbreadMan, //Gingerbread Man Art Border
109    Gradient, //Triangle Gradient Art Border
110    Handmade1, //Handmade Art Border
111    Handmade2, //Handmade Art Border
112    HeartBalloon, //Heart-Shaped Balloon Art Border
113    HeartGray, //Gray Heart Art Border
114    Hearts, //Hearts Art Border
115    HeebieJeebies, //Pattern Art Border
116    Holly, //Holly Art Border
117    HouseFunky, //House Art Border
118    Hypnotic, //Circular Art Border
119    IceCreamCones, //Ice Cream Cone Art Border
120    LightBulb, //Light Bulb Art Border
121    Lightning1, //Lightning Art Border
122    Lightning2, //Lightning Art Border
123    MapPins, //Map Pins Art Border
124    MapleLeaf, //Maple Leaf Art Border
125    MapleMuffins, //Muffin Art Border
126    Marquee, //Marquee Art Border
127    MarqueeToothed, //Marquee Art Border
128    Moons, //Moon Art Border
129    Mosaic, //Mosaic Art Border
130    MusicNotes, //Musical Note Art Border
131    Northwest, //Patterned Art Border
132    Ovals, //Oval Art Border
133    Packages, //Package Art Border
134    PalmsBlack, //Black Palm Tree Art Border
135    PalmsColor, //Color Palm Tree Art Border
136    PaperClips, //Paper Clip Art Border
137    Papyrus, //Papyrus Art Border
138    PartyFavor, //Party Favor Art Border
139    PartyGlass, //Party Glass Art Border
140    Pencils, //Pencils Art Border
141    People, //Character Art Border
142    PeopleWaving, //Waving Character Border
143    PeopleHats, //Character With Hat Art Border
144    Poinsettias, //Poinsettia Art Border
145    PostageStamp, //Postage Stamp Art Border
146    Pumpkin1, //Pumpkin Art Border
147    PushPinNote2, //Push Pin Art Border
148    PushPinNote1, //Push Pin Art Border
149    Pyramids, //Pyramid Art Border
150    PyramidsAbove, //Pyramid Art Border
151    Quadrants, //Quadrants Art Border
152    Rings, //Rings Art Border
153    Safari, //Safari Art Border
154    Sawtooth, //Saw Tooth Art Border
155    SawtoothGray, //Gray Saw Tooth Art Border
156    ScaredCat, //Scared Cat Art Border
157    Seattle, //Umbrella Art Border
158    ShadowedSquares, //Shadowed Squares Art Border
159    SharksTeeth, //Shark Tooth Art Border
160    ShorebirdTracks, //Bird Tracks Art Border
161    Skyrocket, //Rocket Art Border
162    SnowflakeFancy, //Snowflake Art Border
163    Snowflakes, //Snowflake Art Border
164    Sombrero, //Sombrero Art Border
165    Southwest, //Southwest-Themed Art Border
166    Stars, //Stars Art Border
167    StarsTop, //Stars On Top Art Border
168    Stars3d, //3-D Stars Art Border
169    StarsBlack, //Stars Art Border
170    StarsShadowed, //Stars With Shadows Art Border
171    Sun, //Sun Art Border
172    Swirligig, //Whirligig Art Border
173    TornPaper, //Torn Paper Art Border
174    TornPaperBlack, //Black Torn Paper Art Border
175    Trees, //Tree Art Border
176    TriangleParty, //Triangle Art Border
177    Triangles, //Triangles Art Border
178    Tribal1, //Tribal Art Border One
179    Tribal2, //Tribal Art Border Two
180    Tribal3, //Tribal Art Border Three
181    Tribal4, //Tribal Art Border Four
182    Tribal5, //Tribal Art Border Five
183    Tribal6, //Tribal Art Border Six
184    TwistedLines1, //Twisted Lines Art Border
185    TwistedLines2, //Twisted Lines Art Border
186    Vine, //Vine Art Border
187    Waveline, //Wavy Line Art Border
188    WeavingAngles, //Weaving Angles Art Border
189    WeavingBraid, //Weaving Braid Art Border
190    WeavingRibbon, //Weaving Ribbon Art Border
191    WeavingStrips, //Weaving Strips Art Border
192    WhiteFlowers, //White Flowers Art Border
193    Woodwork, //Woodwork Art Border
194    XIllusions, //Crisscross Art Border
195    ZanyTriangles, //Triangle Art Border
196    ZigZag, //Zigzag Art Border
197    ZigZagStitch, //Zigzag Stitch
198}
199
200__string_enum! {
201    BorderStyle {
202        Nil = "nil",
203        None = "none",
204        Single = "single",
205        Thick = "thick",
206        Double = "double",
207        Dotted = "dotted",
208        Dashed = "dashed",
209        DotDash = "dotDash",
210        DotDotDash = "dotDotDash",
211        Triple = "triple",
212        ThinThickSmallGap = "thinThickSmallGap",
213        ThickThinSmallGap = "thickThinSmallGap",
214        ThinThickThinSmallGap = "thinThickThinSmallGap",
215        ThinThickMediumGap = "thinThickMediumGap",
216        ThickThinMediumGap = "thickThinMediumGap",
217        ThinThickThinMediumGap = "thinThickThinMediumGap",
218        ThinThickLargeGap = "thinThickLargeGap",
219        ThickThinLargeGap = "thickThinLargeGap",
220        ThinThickThinLargeGap = "thinThickThinLargeGap",
221        Wave = "wave",
222        DoubleWave = "doubleWave",
223        DashSmallGap = "dashSmallGap",
224        DashDotStroked = "dashDotStroked",
225        ThreeDEmboss = "threeDEmboss",
226        ThreeDEngrave = "threeDEngrave",
227        Outset = "outset",
228        Inset = "inset",
229        Apples = "apples",
230        ArchedScallops = "archedScallops",
231        BabyPacifier = "babyPacifier",
232        BabyRattle = "babyRattle",
233        Balloons3Colors = "balloons3Colors",
234        BalloonsHotAir = "balloonsHotAir",
235        BasicBlackDashes = "basicBlackDashes",
236        BasicBlackDots = "basicBlackDots",
237        BasicBlackSquares = "basicBlackSquares",
238        BasicThinLines = "basicThinLines",
239        BasicWhiteDashes = "basicWhiteDashes",
240        BasicWhiteDots = "basicWhiteDots",
241        BasicWhiteSquares = "basicWhiteSquares",
242        BasicWideInline = "basicWideInline",
243        BasicWideMidline = "basicWideMidline",
244        BasicWideOutline = "basicWideOutline",
245        Bats = "bats",
246        Birds = "birds",
247        BirdsFlight = "birdsFlight",
248        Cabins = "cabins",
249        CakeSlice = "cakeSlice",
250        CandyCorn = "candyCorn",
251        CelticKnotwork = "celticKnotwork",
252        CertificateBanner = "certificateBanner",
253        ChainLink = "chainLink",
254        ChampagneBottle = "champagneBottle",
255        CheckedBarBlack = "checkedBarBlack",
256        CheckedBarColor = "checkedBarColor",
257        Checkered = "checkered",
258        ChristmasTree = "christmasTree",
259        CirclesLines = "circlesLines",
260        CirclesRectangles = "circlesRectangles",
261        ClassicalWave = "classicalWave",
262        Clocks = "clocks",
263        Compass = "compass",
264        Confetti = "confetti",
265        ConfettiGrays = "confettiGrays",
266        ConfettiOutline = "confettiOutline",
267        ConfettiStreamers = "confettiStreamers",
268        ConfettiWhite = "confettiWhite",
269        CornerTriangles = "cornerTriangles",
270        CouponCutoutDashes = "couponCutoutDashes",
271        CouponCutoutDots = "couponCutoutDots",
272        CrazyMaze = "crazyMaze",
273        CreaturesButterfly = "creaturesButterfly",
274        CreaturesFish = "creaturesFish",
275        CreaturesInsects = "creaturesInsects",
276        CreaturesLadyBug = "creaturesLadyBug",
277        CrossStitch = "crossStitch",
278        Cup = "cup",
279        DecoArch = "decoArch",
280        DecoArchColor = "decoArchColor",
281        DecoBlocks = "decoBlocks",
282        DiamondsGray = "diamondsGray",
283        DoubleD = "doubleD",
284        DoubleDiamonds = "doubleDiamonds",
285        Earth1 = "earth1",
286        Earth2 = "earth2",
287        EclipsingSquares1 = "eclipsingSquares1",
288        EclipsingSquares2 = "eclipsingSquares2",
289        EggsBlack = "eggsBlack",
290        Fans = "fans",
291        Film = "film",
292        Firecrackers = "firecrackers",
293        FlowersBlockPrint = "flowersBlockPrint",
294        FlowersDaisies = "flowersDaisies",
295        FlowersModern1 = "flowersModern1",
296        FlowersModern2 = "flowersModern2",
297        FlowersPansy = "flowersPansy",
298        FlowersRedRose = "flowersRedRose",
299        FlowersRoses = "flowersRoses",
300        FlowersTeacup = "flowersTeacup",
301        FlowersTiny = "flowersTiny",
302        Gems = "gems",
303        GingerbreadMan = "gingerbreadMan",
304        Gradient = "gradient",
305        Handmade1 = "handmade1",
306        Handmade2 = "handmade2",
307        HeartBalloon = "heartBalloon",
308        HeartGray = "heartGray",
309        Hearts = "hearts",
310        HeebieJeebies = "heebieJeebies",
311        Holly = "holly",
312        HouseFunky = "houseFunky",
313        Hypnotic = "hypnotic",
314        IceCreamCones = "iceCreamCones",
315        LightBulb = "lightBulb",
316        Lightning1 = "lightning1",
317        Lightning2 = "lightning2",
318        MapPins = "mapPins",
319        MapleLeaf = "mapleLeaf",
320        MapleMuffins = "mapleMuffins",
321        Marquee = "marquee",
322        MarqueeToothed = "marqueeToothed",
323        Moons = "moons",
324        Mosaic = "mosaic",
325        MusicNotes = "musicNotes",
326        Northwest = "northwest",
327        Ovals = "ovals",
328        Packages = "packages",
329        PalmsBlack = "palmsBlack",
330        PalmsColor = "palmsColor",
331        PaperClips = "paperClips",
332        Papyrus = "papyrus",
333        PartyFavor = "partyFavor",
334        PartyGlass = "partyGlass",
335        Pencils = "pencils",
336        People = "people",
337        PeopleWaving = "peopleWaving",
338        PeopleHats = "peopleHats",
339        Poinsettias = "poinsettias",
340        PostageStamp = "postageStamp",
341        Pumpkin1 = "pumpkin1",
342        PushPinNote2 = "pushPinNote2",
343        PushPinNote1 = "pushPinNote1",
344        Pyramids = "pyramids",
345        PyramidsAbove = "pyramidsAbove",
346        Quadrants = "quadrants",
347        Rings = "rings",
348        Safari = "safari",
349        Sawtooth = "sawtooth",
350        SawtoothGray = "sawtoothGray",
351        ScaredCat = "scaredCat",
352        Seattle = "seattle",
353        ShadowedSquares = "shadowedSquares",
354        SharksTeeth = "sharksTeeth",
355        ShorebirdTracks = "shorebirdTracks",
356        Skyrocket = "skyrocket",
357        SnowflakeFancy = "snowflakeFancy",
358        Snowflakes = "snowflakes",
359        Sombrero = "sombrero",
360        Southwest = "southwest",
361        Stars = "stars",
362        StarsTop = "starsTop",
363        Stars3d = "stars3d",
364        StarsBlack = "starsBlack",
365        StarsShadowed = "starsShadowed",
366        Sun = "sun",
367        Swirligig = "swirligig",
368        TornPaper = "tornPaper",
369        TornPaperBlack = "tornPaperBlack",
370        Trees = "trees",
371        TriangleParty = "triangleParty",
372        Triangles = "triangles",
373        Tribal1 = "tribal1",
374        Tribal2 = "tribal2",
375        Tribal3 = "tribal3",
376        Tribal4 = "tribal4",
377        Tribal5 = "tribal5",
378        Tribal6 = "tribal6",
379        TwistedLines1 = "twistedLines1",
380        TwistedLines2 = "twistedLines2",
381        Vine = "vine",
382        Waveline = "waveline",
383        WeavingAngles = "weavingAngles",
384        WeavingBraid = "weavingBraid",
385        WeavingRibbon = "weavingRibbon",
386        WeavingStrips = "weavingStrips",
387        WhiteFlowers = "whiteFlowers",
388        Woodwork = "woodwork",
389        XIllusions = "xIllusions",
390        ZanyTriangles = "zanyTriangles",
391        ZigZag = "zigZag",
392        ZigZagStitch = "zigZagStitch",
393    }
394}