90 $this->_columnIndex = $pIndex;
92 $this->_autoSize =
false;
93 $this->_visible =
true;
94 $this->_outlineLevel = 0;
95 $this->_collapsed =
false;
114 $this->_columnIndex = $pValue;
134 $this->_width = $pValue;
154 $this->_autoSize = $pValue;
174 $this->_visible = $pValue;
197 if ($pValue < 0 || $pValue > 7) {
198 throw new Exception(
"Outline level must range between 0 and 7.");
201 $this->_outlineLevel = $pValue;
221 $this->_collapsed = $pValue;
229 $vars = get_object_vars($this);
230 foreach ($vars as
$key => $value) {
231 if (is_object($value)) {
232 $this->
$key = clone $value;
234 $this->
$key = $value;