Closed tincann closed 5 years ago
When reading styles.xml the parser sets patternStyle to none if the attribute it missing, however the default value is solid.
styles.xml
patternStyle
none
solid
<patternFill> <rgb="FFFFC000"/> </patternFill>
Above snippet should be equivalent to the snippet below.
<patternFill patternStyle="solid"> <rgb="FFFFC000"/> </patternFill>
Looks good, thanks
When reading
styles.xml
the parser setspatternStyle
tonone
if the attribute it missing, however the default value issolid
.Above snippet should be equivalent to the snippet below.