2024-09-24 19:20:38 +04:00
|
|
|
|
using ShabComponentsLibrary.OfficePackage.HelperEnums;
|
|
|
|
|
|
|
|
|
|
namespace ShabComponentsLibrary.OfficePackage.HelperModels
|
|
|
|
|
{
|
|
|
|
|
internal class PdfRowParameters
|
|
|
|
|
{
|
|
|
|
|
public List<string> Texts { get; set; } = new();
|
|
|
|
|
|
|
|
|
|
public string Style { get; set; } = string.Empty;
|
|
|
|
|
|
2024-09-24 23:54:36 +04:00
|
|
|
|
public string? FirstCellStyle { get; set; }
|
|
|
|
|
|
2024-09-24 19:20:38 +04:00
|
|
|
|
public PdfParagraphAlignmentType ParagraphAlignment { get; set; }
|
2024-09-24 23:54:36 +04:00
|
|
|
|
|
|
|
|
|
public PdfParagraphAlignmentType? FirstCellParagraphAlignment { get; set; }
|
|
|
|
|
|
2024-10-09 15:45:39 +04:00
|
|
|
|
public double? RowHeight { get; set; }
|
2024-09-24 19:20:38 +04:00
|
|
|
|
}
|
|
|
|
|
}
|