-
Notifications
You must be signed in to change notification settings - Fork 2.7k
/
Copy pathIndentation.php
163 lines (140 loc) · 3.07 KB
/
Indentation.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
*
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Style;
/**
* Paragraph indentation style.
*
* @see http://www.schemacentral.com/sc/ooxml/t-w_CT_Ind.html
* @since 0.10.0
*/
class Indentation extends AbstractStyle
{
/**
* Left indentation (twip).
*
* @var null|float
*/
private $left = 0;
/**
* Right indentation (twip).
*
* @var null|float
*/
private $right = 0;
/**
* Additional first line indentation (twip).
*
* @var null|float
*/
private $firstLine = 0;
/**
* Additional first line chars indentation (twip).
*
* @var int
*/
private $firstLineChars = 0;
/**
* Indentation removed from first line (twip).
*
* @var null|float
*/
private $hanging = 0;
/**
* Create a new instance.
*
* @param array $style
*/
public function __construct($style = [])
{
$this->setStyleByArray($style);
}
/**
* Get left.
*/
public function getLeft(): ?float
{
return $this->left;
}
/**
* Set left.
*/
public function setLeft(?float $value): self
{
$this->left = $this->setNumericVal($value);
return $this;
}
/**
* Get right.
*/
public function getRight(): ?float
{
return $this->right;
}
/**
* Set right.
*/
public function setRight(?float $value): self
{
$this->right = $this->setNumericVal($value);
return $this;
}
/**
* Get first line.
*/
public function getFirstLine(): ?float
{
return $this->firstLine;
}
/**
* Set first line.
*/
public function setFirstLine(?float $value): self
{
$this->firstLine = $this->setNumericVal($value);
return $this;
}
/**
* Get first line chars.
*/
public function getFirstLineChars(): int
{
return $this->firstLineChars;
}
/**
* Set first line chars.
*/
public function setFirstLineChars(int $value): self
{
$this->firstLineChars = $this->setIntVal($value, $this->firstLineChars);
return $this;
}
/**
* Get hanging.
*/
public function getHanging(): ?float
{
return $this->hanging;
}
/**
* Set hanging.
*/
public function setHanging(?float $value = null): self
{
$this->hanging = $this->setNumericVal($value);
return $this;
}
}