Added charts reading in HWP

This commit is contained in:
Kirill Polyakov
2025-12-25 03:36:19 +03:00
parent f75cc7fe0f
commit 5ae071fa19
104 changed files with 679 additions and 102 deletions

View File

@ -6,4 +6,10 @@ CTextLayout::CTextLayout()
{
}
bool CTextLayout::Read(CHWPStream& oStream)
{
return oStream.ReadBool(m_bWordWrap) && oStream.ReadInt(m_nHorzAlignment) &&
oStream.ReadInt(m_nOrientation) && oStream.ReadInt(m_nVertAlignment);
}
}}