2024-05-22 10:14:48 +04:00
|
|
|
|
using FurnitureAssemblyBusinessLogic.OfficePackage.HelperEnums;
|
|
|
|
|
using System;
|
2024-05-08 01:03:49 +04:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace FurnitureAssemblyBusinessLogic.OfficePackage.HelperModels
|
|
|
|
|
{
|
2024-05-22 10:14:48 +04:00
|
|
|
|
// Информация по ячейке в таблице excel
|
2024-05-08 01:03:49 +04:00
|
|
|
|
public class ExcelCellParameters
|
|
|
|
|
{
|
2024-05-22 10:14:48 +04:00
|
|
|
|
// Название колонки
|
2024-05-08 01:03:49 +04:00
|
|
|
|
public string ColumnName { get; set; } = string.Empty;
|
2024-05-22 10:14:48 +04:00
|
|
|
|
|
|
|
|
|
// Строка
|
2024-05-08 01:03:49 +04:00
|
|
|
|
public uint RowIndex { get; set; }
|
2024-05-22 10:14:48 +04:00
|
|
|
|
|
|
|
|
|
// Тект в ячейке
|
2024-05-08 01:03:49 +04:00
|
|
|
|
public string Text { get; set; } = string.Empty;
|
2024-05-22 10:14:48 +04:00
|
|
|
|
|
|
|
|
|
// Геттер для того, чтобы не искать каждый раз
|
2024-05-08 01:03:49 +04:00
|
|
|
|
public string CellReference => $"{ColumnName}{RowIndex}";
|
|
|
|
|
|
2024-05-22 10:14:48 +04:00
|
|
|
|
// В каком стиле выводить информацию
|
|
|
|
|
public ExcelStyleInfoType StyleInfo { get; set; }
|
2024-05-08 01:03:49 +04:00
|
|
|
|
}
|
|
|
|
|
}
|