mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-11 01:11:43 +08:00
14 lines
238 B
C++
14 lines
238 B
C++
#include "ParaText.h"
|
|
|
|
namespace HWP
|
|
{
|
|
CParaText::CParaText(const STRING& sCtrlID, const STRING& sText, int nStartIDx)
|
|
: CCtrl(sCtrlID), m_sText(sText), m_nStartIDx(nStartIDx)
|
|
{}
|
|
|
|
int CParaText::GetSize()
|
|
{
|
|
return m_sText.length();
|
|
}
|
|
}
|