mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 08:22:08 +08:00
16 lines
299 B
C++
16 lines
299 B
C++
#include "TextLayout.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CTextLayout::CTextLayout()
|
|
{
|
|
|
|
}
|
|
|
|
bool CTextLayout::Read(CHWPStream& oStream)
|
|
{
|
|
return oStream.ReadBool(m_bWordWrap) && oStream.ReadInt(m_nHorzAlignment) &&
|
|
oStream.ReadInt(m_nOrientation) && oStream.ReadInt(m_nVertAlignment);
|
|
}
|
|
}}
|