mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 14:00:32 +08:00
16 lines
316 B
C++
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);
|
|
}
|
|
}}
|