Excel2003 XML parse Interior Pattern property
This commit is contained in:
parent
4b011b427f
commit
ab7aa68300
|
@ -478,6 +478,9 @@ class Excel2003XML extends BaseReader implements IReader
|
||||||
case 'Color':
|
case 'Color':
|
||||||
$this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1);
|
$this->styles[$styleID]['fill']['color']['rgb'] = substr($styleAttributeValue, 1);
|
||||||
break;
|
break;
|
||||||
|
case 'Pattern':
|
||||||
|
$this->styles[$styleID]['fill']['type'] = substr($styleAttributeValue, 1);
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue