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