110 lines
3.7 KiB
C#
110 lines
3.7 KiB
C#
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;
|
|
|
|
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.Header) || 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.InsertCell();
|
|
builder.Write(columnDefinition.Header);
|
|
}
|
|
builder.EndRow();
|
|
|
|
// Вставка второй строки шапки таблицы
|
|
foreach (var columnDefinition in tableWord.ColumnDefinitions)
|
|
{
|
|
builder.InsertCell();
|
|
builder.Write(columnDefinition.Header);
|
|
}
|
|
builder.EndRow();
|
|
|
|
// Вставка данных в таблицу
|
|
foreach (var item in tableWord.Data)
|
|
{
|
|
|
|
foreach (var columnDefinition in tableWord.ColumnDefinitions)
|
|
{
|
|
builder.InsertCell();
|
|
// Получение значения свойства/поля объекта по заданному имени
|
|
var propertyValue = item.GetType()
|
|
.GetProperty(columnDefinition.PropertyName)?
|
|
.GetValue(item)?.ToString();
|
|
|
|
// Вставка значения в ячейку
|
|
builder.Write(propertyValue ?? "");
|
|
|
|
}
|
|
|
|
builder.EndRow();
|
|
}
|
|
|
|
builder.EndTable();
|
|
|
|
// Сохранение документа в файл
|
|
document.Save(tableWord.FilePath);
|
|
}
|
|
|
|
public class ColumnDefinition
|
|
{
|
|
public string Header { get; set; }
|
|
public string PropertyName { get; set; }
|
|
}
|
|
}
|
|
|
|
}
|