Files
core/ASCOfficePPTXFile/ConverterSimple/Source/Structures.h

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_