The Syncfusion® native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I''m trying to rotate text in a cell 45 degrees. Here is my code:
IRange range = _CurrentWorksheet.Range["A5:O5"];
range.CellStyle.Rotation = 45;
As soon as I hit the line of code setting the rotation to 45 degrees, I get an ArgumentOutOfRangeException:
"Specified argument was out of the range of valid values.\r\nParameter name: Indent"
Any ideas? Thanks!