Files
core/HwpFile/HwpDoc/Chart/Label.cpp
2025-12-25 03:36:19 +03:00

19 lines
434 B
C++

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