Files
core/HwpFile/HwpDoc/Section/PageBorderFill.h
2025-01-13 01:12:37 +03:00

29 lines
568 B
C++

#ifndef PAGEBORDERFILL_H
#define PAGEBORDERFILL_H
#include "../HWPStream.h"
#include "../Common/XMLNode.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(CXMLNode& oNode, int nVersion);
static CPageBorderFill* Parse(int nLevel, int nSize, CHWPStream& oBuffer, int nOff, int nVersion);
};
}
#endif // PAGEBORDERFILL_H