mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-19 09:38:11 +08:00
git-svn-id: svn://fileserver/activex/AVS/Sources/TeamlabOffice/trunk/ServerComponents@53593 954022d7-b5bf-4e40-9824-e11837661b57
35 lines
858 B
C++
35 lines
858 B
C++
#pragma once
|
|
#ifndef OOX_LOGIC_TABLE_ROW_HEIGHT_INCLUDE_H_
|
|
#define OOX_LOGIC_TABLE_ROW_HEIGHT_INCLUDE_H_
|
|
|
|
#include "./../WritingElement.h"
|
|
#include <string>
|
|
#include "property.h"
|
|
#include "./../Unit.h"
|
|
#include "./../Limit/TableRowHeightRule.h"
|
|
|
|
|
|
namespace OOX
|
|
{
|
|
namespace Logic
|
|
{
|
|
class TableRowHeight : public WritingElement
|
|
{
|
|
public:
|
|
TableRowHeight();
|
|
virtual ~TableRowHeight();
|
|
explicit TableRowHeight(const XML::XNode& node);
|
|
const TableRowHeight& operator =(const XML::XNode& node);
|
|
|
|
public:
|
|
virtual void fromXML(const XML::XNode& node);
|
|
virtual const XML::XNode toXML() const;
|
|
|
|
public:
|
|
property<UnitDx> Height;
|
|
nullable_property<std::string, Limit::TableRowHeightRule> Type;
|
|
};
|
|
} // namespace Logic
|
|
} // namespace OOX
|
|
|
|
#endif // OOX_LOGIC_TABLE_ROW_HEIGHT_INCLUDE_H_
|