We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
2.6.2 and f1ecc1e
Please attach your original Excel File to help us reproduce the issue
using NPOI.SS.UserModel; using NPOI.XSSF.UserModel; IWorkbook workbook = new XSSFWorkbook(); ISheet sheet = workbook.CreateSheet("Test"); var row = sheet.CreateRow(0); row.CreateCell(0).SetCellValue("Hello"); row.Cells[0].CellStyle.Alignment = HorizontalAlignment.Right; using var fs = File.Create("Test.xlsx"); workbook.Write(fs);
The cell Alignment is not apply
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
NPOI Version
2.6.2 and f1ecc1e
File Type
Upload the Excel File
Please attach your original Excel File to help us reproduce the issue
Reproduce Steps
Issue Description
The cell Alignment is not apply
The text was updated successfully, but these errors were encountered: