C# GemBox-SpreadSheet 从右到左

C# GemBox-SpreadSheet Right To Left

我使用的是 C# WebApi 2,存储在 Azure 服务器上,没有安装 office。

我需要创建一个excel文件,并且知道GemBox Spreadsheet不需要在机器上安装office。

问题是我需要文件从右到左,但找不到如何做。

GemBox 电子表格是否可行?

如果没有,是否有另一个不需要 office 支持 RTL 的库?

试试这个:

ExcelFile file = new ExcelFile();
ExcelWorksheet sheet = file.Worksheets.Add("Sheet1");
ExcelViewOptions viewOptions = sheet.ViewOptions;

viewOptions.ShowColumnsFromRightToLeft = true;

希望对您有所帮助。