Files
DocumentServer-v-9.2.0/core/HwpFile/HwpDoc/Section/PageBorderFill.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

30 lines
600 B
C++

#ifndef PAGEBORDERFILL_H
#define PAGEBORDERFILL_H
#include "../HanType.h"
#include "../HWPStream.h"
#include "../Common/XMLReader.h"
namespace HWP
{
class CPageBorderFill
{
bool m_bTextBorder;
bool m_bHeaderInside;
bool m_bFooterInside;
HWP_BYTE m_chFillArea;
short m_shOffsetLeft;
short m_shOffsetRight;
short m_shOffsetTop;
short m_shOffsetBottom;
short m_shBorderFill;
public:
CPageBorderFill();
CPageBorderFill(CXMLReader& oReader, EHanType eType);
static CPageBorderFill* Parse(int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
};
}
#endif // PAGEBORDERFILL_H