Добавьте файлы проекта.

This commit is contained in:
melekhin
2026-06-05 15:58:03 +07:00
parent 785bd7dc5d
commit cf8ef7add7
56 changed files with 13478 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
namespace QWERTYkez.ExcelProcessor.Editors;
/// <summary>
/// Внутренняя реализация <see cref="IRun"/> для хранения форматированного фрагмента текста.
/// Минимизирует аллокации, не использует рефлексию, все поля доступны напрямую внутри сборки.
/// </summary>
internal sealed class ExcelRun : IRun
{
private string _text = string.Empty;
private RunFormat? _format;
/// <inheritdoc />
public string Text
{
get => _text;
set => _text = value ?? string.Empty;
}
/// <inheritdoc />
public RunFormat? Format
{
get => _format;
set => _format = value;
}
}