如何使用 C++ 更改 Excel 行高

这个简单的教程将帮助您了解如何使用 C++ 更改 Excel 行高。您将了解如何遵循几个简单的步骤,使用 C++ 调整 Excel 中的行高以不同的方式,例如使用常量值更改行高或根据该行中内容的数据和样式更改行高。最后,更改行高后,输出文件可以保存为 XLSX 或任何其他支持的格式。

使用 C++ 更改 Excel 行高的步骤

  1. 使用 NuGet 包管理器添加 Aspose.Cells.Cpp 库以处理 Excel 文件
  2. 在开头包含 Aspose::Cells 命名空间
  3. 通过加载目标 Excel 文件实例化 Workbook 对象
  4. 访问要更改所选行高的工作表
  5. 通过提供行索引和固定高度值来更改行高
  6. 选择要根据内容更改行高的另一个工作表
  7. 根据数据更改多行高度
  8. 使用更改的行高保存工作簿

这些步骤通过在在 C++ 中设置行高之前共享必要的库和要包含的引用来描述该过程。加载目标工作簿后,将引用要更改其行高的不同工作表。根据将行高更改为固定值或根据目标行中的内容设置可变大小的要求,使用不同的函数来更改高度。

使用 C++ 更改 Excel 行高的代码

#pragma once
#include "Aspose.Cells.h"
class ChangeExcelRowHeight
{
public : void ChangeExcelRowHeightUsingCplusCplus()
{
// Set the Aspose.Cells license to produce watermark free output file
intrusive_ptr<License> rowHeightLicense = new License();
rowHeightLicense->SetLicense(new String("Aspose.Cells.lic"));
// Open the sample Excel file to change the rows in different worksheet
intrusive_ptr<IWorkbook> wbForRowsHeight = Factory::CreateIWorkbook(new String("sampleFileForRowsHeight.xlsx"));
// Access the target worksheet say second worksheet
intrusive_ptr<IWorksheet> secondWorksheet = wbForRowsHeight->GetIWorksheets()->GetObjectByIndex(1);
// Set the single row (say row 4) height to 40
secondWorksheet->GetICells()->SetRowHeight(3, 40);
// Set particular row's height based on the contents in a specified range of columns
secondWorksheet->AutoFitRow(3, 5, 8);
// Set height of a range of rows based on the contents in them
secondWorksheet->AutoFitRows(9, 15);
// Access some other worksheet (say fourth) whose all rows height is to be set based on the contents
intrusive_ptr<IWorksheet> fourthWorksheet = wbForRowsHeight->GetIWorksheets()->GetObjectByIndex(3);
fourthWorksheet->AutoFitRows();
// Save the Excel file with different name after setting the rows height
wbForRowsHeight->Save(new String("outputRowsUpdated.xlsx"));
}
};

我们使用 Factory::CreateIWorkbook() 函数加载示例 Excel 文件,然后通过提供工作表索引来访问其不同的工作表。每个工作表都有一组单元格,这些单元格支持许多功能,包括设置单个行高的功能。此外,工作表本身具有许多功能,可用于根据文本样式和数据大小以不同方式设置行高。

在这里,您获得了使用 C++ 在 Excel 中修改行高的信息。您还可以执行各种转换,如文章 如何使用 C++ 将 Excel 转换为 PDF 中所述,该文章解释了从 Excel 文件到 PDF 文件的转换。

 简体中文