mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-04-07 13:55:33 +08:00
27 lines
846 B
C++
27 lines
846 B
C++
#pragma once
|
|
|
|
#include "PropertiesMapping.h"
|
|
#include "TablePropertyExceptions.h"
|
|
#include "CharacterPropertyExceptions.h"
|
|
#include "RevisionData.h"
|
|
#include "SprmTDefTable.h"
|
|
#include "BorderCode.h"
|
|
#include "IMapping.h"
|
|
|
|
namespace DocFileFormat
|
|
{
|
|
class TableRowPropertiesMapping: public PropertiesMapping, public IMapping
|
|
{
|
|
private:
|
|
XMLTools::XMLElement<wchar_t>* _trPr;
|
|
XMLTools::XMLElement<wchar_t>* _tblPrEx;
|
|
//XMLTools::XMLElement<wchar_t>* _tblBorders;
|
|
//BorderCode brcLeft, brcTop, brcBottom, brcRight, brcHorz, brcVert;
|
|
CharacterPropertyExceptions* _rowEndChpx;
|
|
|
|
public:
|
|
TableRowPropertiesMapping( XmlUtils::CXmlWriter* writer, CharacterPropertyExceptions* rowEndChpx );
|
|
virtual ~TableRowPropertiesMapping();
|
|
virtual void Apply( IVisitable* visited );
|
|
};
|
|
} |