Files
DocumentServer-v-9.2.0/core/HwpFile/HwpDoc/Paragraph/CommonObj.h
Yajbir Singh f1b860b25c
Some checks failed
check / markdownlint (push) Has been cancelled
check / spellchecker (push) Has been cancelled
updated
2025-12-11 19:03:17 +05:30

32 lines
481 B
C++

#ifndef COMMONOBJ_H
#define COMMONOBJ_H
#include "HWPPargraph.h"
namespace HWP
{
struct TCommonObj
{
HWP_STRING m_sCtrlID;
int m_nObjAttr;
int m_nYOffset;
int m_nXOffset;
int m_nObjWidth;
int m_nObjHeight;
int m_nZOrder;
VECTOR<short> m_arObjSpaces;
int m_nObjInstanceID;
int m_nBlockPageBreak;
HWP_STRING m_sObjDesc;
LIST<CHWPPargraph*> m_arParas;
int m_nCaptionAttr;
int m_nCaptionWidth;
int m_nCaptionSpacing;
int m_nCaptionMaxW;
};
}
#endif // COMMONOBJ_H