Answers for "epplus how to align text to right"

C#
0

epplus how to align text to right

//make column H wider and set the text align to the top and right
worksheet.Column(8).Width = 25;
worksheet.Column(8).Style.HorizontalAlignment = ExcelHorizontalAlignment.Right;
worksheet.Column(8).Style.VerticalAlignment = ExcelVerticalAlignment.Top;

//wrap text in the cells
worksheet.Column(8).Style.WrapText = true;
Posted by: Guest on March-08-2021

C# Answers by Framework

Browse Popular Code Answers by Language