mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
19 lines
434 B
C++
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);
|
|
}
|
|
}}
|