In the main source code, we have added header-related settings (e.g., header centering, text wrapping, etc.). Please backport these features to the v1 version to keep functionality consistent. Thank you.
in package
public class OpenXmlStyleOptions
{
public bool WrapCellContents { get; set; }
}
sourceCode
public class OpenXmlStyleOptions
{
public bool WrapCellContents { get; set; }
public OpenXmlHeaderStyle? HeaderStyle { get; set; }
public HorizontalCellAlignment HorizontalAlignment { get; set; } = HorizontalCellAlignment.Left;
public VerticalCellAlignment VerticalAlignment { get; set; } = VerticalCellAlignment.Bottom;
}
In the main source code, we have added header-related settings (e.g., header centering, text wrapping, etc.). Please backport these features to the v1 version to keep functionality consistent. Thank you.
in package
public class OpenXmlStyleOptions
{
public bool WrapCellContents { get; set; }
}
sourceCode
public class OpenXmlStyleOptions
{
public bool WrapCellContents { get; set; }
public OpenXmlHeaderStyle? HeaderStyle { get; set; }
public HorizontalCellAlignment HorizontalAlignment { get; set; } = HorizontalCellAlignment.Left;
public VerticalCellAlignment VerticalAlignment { get; set; } = VerticalCellAlignment.Bottom;
}