We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b453cf0 commit 1dc3dc6Copy full SHA for 1dc3dc6
src/PhpWord/Style/TextBox.php
@@ -65,6 +65,33 @@ class TextBox extends Image
65
* @var string
66
*/
67
private $borderColor;
68
+
69
+ /**
70
+ * background color
71
+ *
72
+ * @var string
73
+ */
74
+ private $bgColor;
75
76
77
+ * Set background color
78
79
+ * @param string $value
80
81
+ public function setBgColor($value = null)
82
+ {
83
+ $this->bgColor = $value;
84
+ }
85
86
87
+ * Get background color
88
89
+ * @return string
90
91
+ public function getBgColor()
92
93
+ return $this->bgColor;
94
95
96
/**
97
* Set margin top.
0 commit comments