gpt4 book ai didi

epplus:将列的换行样式设置为true后如何获取行的高度?

转载 作者:行者123 更新时间:2023-12-02 19:15:51 27 4
gpt4 key购买 nike

设置列的 WrapText=true 后,我想查看行的新高度(即文本是否换行,行数)。行的 Height 属性似乎未更新。

        ExcelPackage pkg = new ExcelPackage();
ExcelWorksheet sheet = pkg.Workbook.Worksheets.Add("Test");

// height is 15.0
double heightBefore = sheet.Row(1).Height;


sheet.Cells[1, 1].Value = "Now is the time for all good men to come to the aid of their country";

ExcelColumn col = sheet.Column(1);

// this will resize the width to 60
col.AutoFit();

if (col.Width > 50)
{
col.Width = 50;

// this is just a style property, and doesn't actually execute any recalculations
col.Style.WrapText = true;
}

// so this is still 15.0. How do I get it to compute what the size will be?
double heightAfter = sheet.Row(1).Height;

// open the xls, and the height is 30.0
pkg.SaveAs(new System.IO.FileInfo("text.xlsx"));

事实上,对 Height 属性(或底层字段 _height)的搜索表明它仅由属性 setter 设置,并且似乎从未根据其他任何内容(例如行中的内容)进行设置。

关于如何获得刷新的行高度有什么想法吗?

谢谢

最佳答案

我注意到 EPPlus 的一般模式是它使用最少的必要信息生成文档框架。然后,当您打开文件时,Excel 会填写剩余的 XML 结构,这就是为什么您在打开 EPPlus 生成的文档后始终必须保存文件的原因。

对于您的问题,我假设 Excel 在您打开 Excel 文件后更新行高,因此 EPPlus 不会有更新的行高信息。我不确定该库不支持此功能,但像您一样,我无法找到获取更新值的方法。

但是,一种解决方法可能是只计算该值,因为您知道文本长度和列宽度:

ExcelPackage pkg = new ExcelPackage();
ExcelWorksheet sheet = pkg.Workbook.Worksheets.Add("Test");

// height is 15.0
double heightBefore = sheet.Row(1).Height;

var someText = "Now is the time for all good men to come to the aid of their country. Typewriters were once ground-breaking machines.";
sheet.Cells[1, 1].Value = someText;

ExcelColumn col = sheet.Column(1);
ExcelRow row = sheet.Row(1);

// this will resize the width to 60
col.AutoFit();

if (col.Width > 50)
{
col.Width = 50;

// this is just a style property, and doesn't actually execute any recalculations
col.Style.WrapText = true;
}

// calculate the approximate row height and set the value;
var lineCount = GetLineCount(someText, (int)col.Width);
row.Height = heightBefore * lineCount;

// open the xls, and the height is 45.0
pkg.SaveAs(new System.IO.FileInfo("text.xlsx"));

计算行数的方法如下:

private int GetLineCount(String text, int columnWidth)
{
var lineCount = 1;
var textPosition = 0;

while (textPosition <= text.Length)
{
textPosition = Math.Min(textPosition + columnWidth, text.Length);
if (textPosition == text.Length)
break;

if (text[textPosition - 1] == ' ' || text[textPosition] == ' ')
{
lineCount++;
textPosition++;
}
else
{
textPosition = text.LastIndexOf(' ', textPosition) + 1;

var nextSpaceIndex = text.IndexOf(' ', textPosition);
if (nextSpaceIndex - textPosition >= columnWidth)
{
lineCount += (nextSpaceIndex - textPosition) / columnWidth;
textPosition = textPosition + columnWidth;
}
else
lineCount++;
}
}

return lineCount;
}

需要记住的一件事是,Excel 的最大行高为 409.5,因此您需要确保列宽不会太窄而达到此限制。

此外,我注意到的另一件事是,您使用 EPPlus 手动设置的列宽实际上并未将列设置为预期值。例如,如果您将列宽设置为 50,您会注意到实际列宽设置为 49.29,因此您可能也需要将其考虑在内。

关于epplus:将列的换行样式设置为true后如何获取行的高度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18594467/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com