mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 06:22:44 +08:00
17 lines
308 B
C++
17 lines
308 B
C++
#include "VtFont.h"
|
|
|
|
namespace HWP { namespace CHART
|
|
{
|
|
CVtFont::CVtFont()
|
|
{
|
|
|
|
}
|
|
|
|
bool CVtFont::Read(CChartStream& oStream)
|
|
{
|
|
return m_oColor.Read(oStream) && oStream.ReadInteger(m_nEffects) &&
|
|
oStream.ReadString(m_sName) && oStream.ReadSingle(m_snSize) &&
|
|
oStream.ReadInteger(m_nStyle);
|
|
}
|
|
}}
|