Files
core/HwpFile/HwpDoc/Chart/TextLayout.cpp
Kirill Polyakov ebed729f13 Refactoring
2026-01-19 13:04:45 +03:00

16 lines
316 B
C++

#include "TextLayout.h"
namespace HWP { namespace CHART
{
CTextLayout::CTextLayout()
{
}
bool CTextLayout::Read(CChartStream& oStream)
{
return oStream.ReadBoolean(m_bWordWrap) && oStream.ReadInteger(m_nHorzAlignment) &&
oStream.ReadInteger(m_nOrientation) && oStream.ReadInteger(m_nVertAlignment);
}
}}