Merge pull request #225 from hrsantiago/master

Parse readingOrder
This commit is contained in:
Thomas Fussell 2017-09-12 16:21:05 -04:00 committed by GitHub
commit c214c6ca0b

View File

@ -2115,6 +2115,11 @@ void xlsx_consumer::read_stylesheet()
{
alignment.horizontal(parser().attribute<xlnt::horizontal_alignment>("horizontal"));
}
if (parser().attribute_present("readingOrder"))
{
parser().attribute<int>("readingOrder");
}
}
else if (xf_child_element == qn("spreadsheetml", "protection"))
{