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

18 lines
382 B
C++

#include "Label.h"
namespace HWP { namespace CHART
{
CLabel::CLabel()
{
}
bool CLabel::Read(CChartStream& oStream)
{
return oStream.ReadBoolean(m_bAuto) && m_oBackdrop.Read(oStream) &&
oStream.ReadString(m_sFormat) && oStream.ReadString(m_sFormatLength) &&
oStream.ReadBoolean(m_bStanding) && m_oTextLayout.Read(oStream) &&
m_oVtFont.Read(oStream);
}
}}