|
22 | 22 | */
|
23 | 23 | class Border extends AbstractStyle
|
24 | 24 | {
|
| 25 | + /** |
| 26 | + * Border Style Val. |
| 27 | + * Wordprocessing Paragraphs Borders |
| 28 | + * Specifies the style of the border. Paragraph borders can be only line borders. (Page borders can also be art borders.) Possible values are: |
| 29 | + * @see http://officeopenxml.com/WPborders.php |
| 30 | + * @const string |
| 31 | + */ |
| 32 | + const BORDER_STYLE_SINGLE = 'single'; //A single line |
| 33 | + const BORDER_STYLE_DASH_DOT_STROKED = 'dashDotStroked'; //A line with a series of alternating thin and thick strokes |
| 34 | + const BORDER_STYLE_DASHED = 'dashed'; //A dashed line |
| 35 | + const BORDER_STYLE_DASH_SMALL_GAP = 'dashSmallGap'; //A dashed line with small gaps |
| 36 | + const BORDER_STYLE_DOT_DASH = 'dotDash'; //A line with alternating dots and dashes |
| 37 | + const BORDER_STYLE_DOT_DOT_DASH = 'dotDotDash'; //A line with a repeating dot - dot - dash sequence |
| 38 | + const BORDER_STYLE_DOTTED = 'dotted'; //A dotted line |
| 39 | + const BORDER_STYLE_DOUBLE = 'double'; //A double line |
| 40 | + const BORDER_STYLE_DOUBLE_WAVE = 'doubleWave'; //A double wavy line |
| 41 | + const BORDER_STYLE_INSET = 'inset'; //An inset set of lines |
| 42 | + const BORDER_STYLE_NIL = 'nil'; //No border |
| 43 | + const BORDER_STYLE_NONE = 'none'; //No border |
| 44 | + const BORDER_STYLE_OUTSET = 'outset'; //An outset set of lines |
| 45 | + const BORDER_STYLE_THICK = 'thick'; //A single line |
| 46 | + const BORDER_STYLE_THICK_THIN_LARGE_GAP = 'thickThinLargeGap'; //A thick line contained within a thin line with a large-sized intermediate gap |
| 47 | + const BORDER_STYLE_THICK_THIN_MEDIUM_GAP = 'thickThinMediumGap'; //A thick line contained within a thin line with a medium-sized intermediate gap |
| 48 | + const BORDER_STYLE_THICK_THIN_SMALL_GAP = 'thickThinSmallGap'; //A thick line contained within a thin line with a small intermediate gap |
| 49 | + const BORDER_STYLE_THIN_THICK_LARGE_GAP = 'thinThickLargeGap'; //A thin line contained within a thick line with a large-sized intermediate gap |
| 50 | + const BORDER_STYLE_THIN_THICK_MEDIUM_GAP = 'thinThickMediumGap'; //A thick line contained within a thin line with a medium-sized intermediate gap |
| 51 | + const BORDER_STYLE_THIN_THICK_SMALL_GAP = 'thinThickSmallGap'; //A thick line contained within a thin line with a small intermediate gap |
| 52 | + const BORDER_STYLE_THIN_THICK_THINLARGE_GAP = 'thinThickThinLargeGap'; //A thin-thick-thin line with a large gap |
| 53 | + const BORDER_STYLE_THIN_THICK_THIN_MEDIUM_GAP = 'thinThickThinMediumGap'; //A thin-thick-thin line with a medium gap |
| 54 | + const BORDER_STYLE_THIN_THICK_THIN_SMALL_GAP = 'thinThickThinSmallGap'; //A thin-thick-thin line with a small gap |
| 55 | + const BORDER_STYLE_THREE_D_EMBOSS = 'threeDEmboss'; //A three-staged gradient line, getting darker towards the paragraph |
| 56 | + const BORDER_STYLE_THREE_D_ENGRAVE = 'threeDEngrave'; //A three-staged gradient like, getting darker away from the paragraph |
| 57 | + const BORDER_STYLE_TRIPLE = 'triple'; //A triple line |
| 58 | + const BORDER_STYLE_WAVE = 'wave'; //A wavy line |
| 59 | + |
25 | 60 | /**
|
26 | 61 | * Border Top Size
|
27 | 62 | *
|
|
0 commit comments