mirror of
https://github.com/ONLYOFFICE/core.git
synced 2026-07-18 16:15:00 +08:00
26 lines
477 B
C++
26 lines
477 B
C++
#pragma once
|
|
#ifndef PPTX2DRAWINGXML_STRUCTURES_INCLUDE_H_
|
|
#define PPTX2DRAWINGXML_STRUCTURES_INCLUDE_H_
|
|
|
|
namespace PPTX2EditorSimple
|
|
{
|
|
struct TableCellData
|
|
{
|
|
int x;
|
|
int y;
|
|
int width;
|
|
int height;
|
|
int colsCount;
|
|
int rowsCount;
|
|
int colNumber;
|
|
int rowNumber;
|
|
bool firstCol;
|
|
bool lastCol;
|
|
bool firstRow;
|
|
bool lastRow;
|
|
bool band1H;
|
|
bool band1V;
|
|
};
|
|
} // namespace PPTX2DrawingXML
|
|
|
|
#endif //PPTX2DRAWINGXML_STRUCTURES_INCLUDE_H_
|