Excel2003 XML parse Interior Pattern property

This commit is contained in:
Arthur Miniconi 2016-12-14 11:44:15 +01:00 committed by Adrien Crivelli
parent 4b011b427f
commit ab7aa68300
No known key found for this signature in database
GPG Key ID: B182FD79DC6DE92E
1 changed files with 3 additions and 0 deletions

View File

@ -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;