PIbd-32_Rogashova_E.A._COP_1/COPWinForms/ComponentWord2.cs

164 lines
5.7 KiB
C#
Raw Normal View History

using Aspose.Words.Drawing.Charts;
using Aspose.Words;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Aspose.Words.Tables;
2023-10-13 20:00:14 +04:00
using static COPWinForms.ComponentWord2;
namespace COPWinForms
{
public partial class ComponentWord2 : Component
{
public ComponentWord2()
{
InitializeComponent();
}
public ComponentWord2(IContainer container)
{
container.Add(this);
InitializeComponent();
}
public void CreateTable(TableWord tableWord)
{
// Проверка наличия данных и определений столбцов
if (tableWord.Data == null)
{
throw new ArgumentException("Data or column definitions are null or empty");
}
// Проверка, что все ячейки шапки заполнены и для каждого столбца определено свойство/поле класса
foreach (var columnDefinition in tableWord.ColumnDefinitions)
{
if (string.IsNullOrEmpty(columnDefinition.PropertyName))
{
throw new ArgumentException($"Incomplete column definition: {columnDefinition.Header}");
}
}
// Создание документа
Document document = new Document();
DocumentBuilder builder = new DocumentBuilder(document);
Style titleStyle = builder.Document.Styles.Add(StyleType.Paragraph, "Title");
titleStyle.Font.Size = 16;
titleStyle.Font.Bold = true;
// Установка заголовка документа
builder.ParagraphFormat.Style = titleStyle;
builder.Writeln(tableWord.DocumentTitle);
// Создание таблицы
Table table = builder.StartTable();
// Вставка первой строки шапки таблицы
foreach (var columnDefinition in tableWord.ColumnDefinitions)
{
builder.CellFormat.PreferredWidth = PreferredWidth.FromPoints(40);
builder.InsertCell();
builder.Write(columnDefinition.Header);
}
// Объединение ячеек в первой строке шапки таблицы
2023-10-13 20:00:14 +04:00
foreach (var mergedColumn in tableWord.MergedColumns)
{
int startCellIndex = mergedColumn[0];
int endCellIndex = mergedColumn[mergedColumn.Length - 1];
2023-10-13 20:00:14 +04:00
for (int i = startCellIndex; i <= endCellIndex; i++)
{
table.Rows[0].Cells[i].CellFormat.HorizontalMerge = CellMerge.First;
table.Rows[0].Cells[i].CellFormat.VerticalMerge = CellMerge.First;
2023-10-13 20:00:14 +04:00
}
for (int i = startCellIndex + 1; i <= endCellIndex; i++)
{
table.Rows[0].Cells[i].CellFormat.HorizontalMerge = CellMerge.Previous;
table.Rows[0].Cells[i].CellFormat.VerticalMerge = CellMerge.First;
2023-10-13 20:00:14 +04:00
}
2023-10-13 20:00:14 +04:00
}
2023-10-13 20:00:14 +04:00
builder.EndRow();
int ColInd = 0;
2023-10-13 20:00:14 +04:00
foreach (var columnDefinition2 in tableWord.ColumnDefinitions2)
{
builder.InsertCell();
2023-10-13 20:00:14 +04:00
builder.Write(columnDefinition2.Header);
builder.CellFormat.PreferredWidth = PreferredWidth.FromPoints(tableWord.WeightColumn[ColInd]);
ColInd++;
}
builder.EndRow();
int columnIndex;
foreach (var columnDefinition in tableWord.ColumnDefinitions)
{
string currentPropertyName = columnDefinition.PropertyName;
columnIndex = 0;
foreach (var columnDefinition2 in tableWord.ColumnDefinitions2)
{
string currentPropertyName1 = columnDefinition2.PropertyName;
if (currentPropertyName == currentPropertyName1)
{
table.Rows[0].Cells[columnIndex].CellFormat.VerticalMerge = CellMerge.First;
table.Rows[1].Cells[columnIndex].CellFormat.VerticalMerge = CellMerge.Previous;
}
columnIndex++;
}
}
// Вставка данных в таблицу
foreach (var item in tableWord.Data)
{
2023-10-13 20:00:14 +04:00
foreach (var columnDefinition2 in tableWord.ColumnDefinitions2)
{
builder.InsertCell();
// Получение значения свойства/поля объекта по заданному имени
var propertyValue = item.GetType()
2023-10-13 20:00:14 +04:00
.GetProperty(columnDefinition2.PropertyName)?
.GetValue(item)?.ToString();
// Вставка значения в ячейку
builder.Write(propertyValue ?? "");
}
builder.EndRow();
}
2023-10-13 20:00:14 +04:00
builder.EndTable();
// Сохранение документа в файл
document.Save(tableWord.FilePath);
}
public class ColumnDefinition
{
public string Header { get; set; }
public string PropertyName { get; set; }
}
2023-10-13 20:00:14 +04:00
public class ColumnDefinition2
{
public string Header { get; set; }
public string PropertyName { get; set; }
}
}
}