彩票走势图

无需MS Office创建Excel!在C ++中以编程方是在Excel中插入和删除行和列

翻译|使用教程|编辑:李显亮|2021-04-26 10:14:13.957|阅读 255 次

概述:有时可能会遇到需要以编程方式操纵Excel文件时插入或删除行和列的情况。有鉴于此,本文将介绍如何使用C ++在Excel工作表中插入和删除行和列。

# 慧都年终大促·界面/图表报表/文档/IDE等千款热门软控件火热促销中 >>

MS Excel为您提供了许多处理Excel文件的功能。可以执行的基本操作之一是插入或删除行和列。有时可能会遇到需要以编程方式操纵Excel文件时插入或删除行和列的情况。有鉴于此,本文将教您如何使用C ++在Excel工作表中插入和删除行和列。

  • 使用C ++在Excel工作表中插入行
  • 使用C ++在Excel工作表中插入列
  • 使用C ++从Excel工作表中删除行
  • 使用C ++从Excel工作表中删除列

Aspose.Cells for C++是本机C ++库,使用它可以创建,读取和更新Excel文件,而无需安装Microsoft Excel。该API还支持在Excel工作表中插入和删除行和列。

下载Aspose.Cells for C++最新版

整合所有格式的Aspose.Total永久授权正在火热促销中,立马1分钟了解全部咨询!

使用C ++在Excel工作表中插入行

下面是我们将在本文中处理的示例文件的图像。

无需MS Office创建Excel!在C ++中以编程方是在Excel中插入和删除行和列

以下是在Excel工作表中插入行的步骤。

  • 首先,使用 IWorkbook 类加载 Excel 文件。
  • 使用 IWorkbook->GetIWorksheets()->GetObjectByIndex (Aspose::Cells::Systems::Int32 index) 方法获得你想插入行的工作表实例。
  • 使用IWorksheet->GetICells()->InsertRows ( Aspose::Cells::Systems::Int32 rowIndex, Aspose::Cells::Systems::Int32 totalRows) 方法插入行。
  • 最后,使用 IWorkbook->Save (intrusive_ptrfileName) 方法保存Excel文件。

下面的示例代码显示了如何使用C ++在Excel工作表中插入行。

// Source directory path.
StringPtr srcDir = new String("SourceDirectory\\");

// Output directory path.
StringPtr outDir = new String("OutputDirectory\\");

// Load the input Excel file
intrusive_ptrworkbook = Factory::CreateIWorkbook(srcDir->StringAppend(new String("Sample1.xlsx")));

// Access the first worksheet in the Excel file
intrusive_ptrworksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);

// Insert 2 rows into the worksheet at 3rd position
worksheet->GetICells()->InsertRows(2, 2);

// Path of output Excel file
StringPtr outputInsertRows = outDir->StringAppend(new String("outputInsertRows.xlsx"));

// Save the Excel file.
workbook->Save(outputInsertRows);
无需MS Office创建Excel!在C ++中以编程方是在Excel中插入和删除行和列

使用C++在Excel工作表中插入列

以下是在Excel工作表中插入列的步骤。

  • 首先,使用 IWorkbook 类加载 Excel 文件。
  • 使用 IWorkbook->GetIWorksheets()->GetObjectByIndex (Aspose::Cells::Systems::Int32 index) 方法获得你想插入列的工作表实例。
  • 使用IWorksheet->GetICells()->InsertColumns ( Aspose::Cells::Systems::Int32 columnIndex, Aspose::Cells::Systems::Int32 totalColumns) 方法插入列。
  • 最后,使用 IWorkbook->Save (intrusive_ptrfileName) 方法保存Excel文件。

下面的示例代码显示了如何使用C++在Excel工作表中插入列。

// Source directory path.
StringPtr srcDir = new String("SourceDirectory\\");

// Output directory path.
StringPtr outDir = new String("OutputDirectory\\");

// Load the input Excel file
intrusive_ptrworkbook = Factory::CreateIWorkbook(srcDir->StringAppend(new String("Sample1.xlsx")));

// Access the first worksheet in the Excel file
intrusive_ptrworksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);

// Insert 2 columns into the worksheet at 2nd position
worksheet->GetICells()->InsertColumns(1, 2);

// Path of output Excel file
StringPtr outputInsertColumns = outDir->StringAppend(new String("outputInsertColumns.xlsx"));

// Save the Excel file.
workbook->Save(outputInsertColumns);
无需MS Office创建Excel!在C ++中以编程方是在Excel中插入和删除行和列

使用C ++从Excel工作表中删除行

以下是从Excel工作表中删除行的步骤。

  • 首先,使用 IWorkbook 类加载 Excel 文件。
  • 使用IWorkbook-> GetIWorksheets()-> GetObjectByIndex(Aspose :: Cells :: Systems :: Int32索引)方法获取要从中删除行的工作表实例。
  • 使用IWorksheet-> GetICells()-> DeleteRows(Aspose :: Cells :: Systems :: Int32 rowIndex,Aspose :: Cells :: Systems :: Int32 totalRows,bool updateReference)方法删除行。
  • 最后,使用IWorkbook-> Save(intrusive_ptrfileName)方法保存Excel文件。

下面的示例代码显示了如何使用C ++从Excel工作表中删除行。

// Source directory path.
StringPtr srcDir = new String("SourceDirectory\\");

// Output directory path.
StringPtr outDir = new String("OutputDirectory\\");

// Load the input Excel file
intrusive_ptrworkbook = Factory::CreateIWorkbook(srcDir->StringAppend(new String("Sample1.xlsx")));

// Access the first worksheet in the Excel file
intrusive_ptrworksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);

// Delete 2 rows starting from the 3rd row
worksheet->GetICells()->DeleteRows(2, 2, true);

// Path of output Excel file
StringPtr outputDeleteRows = outDir->StringAppend(new String("outputDeleteRows.xlsx"));

// Save the Excel file.
workbook->Save(outputDeleteRows);
无需MS Office创建Excel!在C ++中以编程方是在Excel中插入和删除行和列

使用C ++从Excel工作表中删除列

以下是从Excel工作表中删除列的步骤。

  • 首先,使用 IWorkbook 类加载 Excel 文件。
  • 使用 IWorkbook->GetIWorksheets()->GetObjectByIndex (Aspose::Cells::Systems::Int32 index) 方法获取你要删除的列的工作表的实例。
  • 使用IWorksheet->GetICells()->DeleteColumns ( Aspose::Cells::Systems::Int32 columnIndex, Aspose::Systems::Int32 totalColumns, bool updateReference) 方法删除列。
  • 最后,使用 IWorkbook->Save (intrusive_ptrfileName) 方法保存Excel文件。

下面的示例代码显示了如何使用C++从Excel工作表中删除列。

// Source directory path.
StringPtr srcDir = new String("SourceDirectory\\");

// Output directory path.
StringPtr outDir = new String("OutputDirectory\\");

// Load the input Excel file
intrusive_ptrworkbook = Factory::CreateIWorkbook(srcDir->StringAppend(new String("Sample1.xlsx")));

// Access the first worksheet in the Excel file
intrusive_ptrworksheet = workbook->GetIWorksheets()->GetObjectByIndex(0);

// Delete 2 columns from the worksheet starting at the 2nd position
worksheet->GetICells()->DeleteColumns(1, 2, true);

// Path of output Excel file
StringPtr outputDeleteColumns = outDir->StringAppend(new String("outputDeleteColumns.xlsx"));

// Save the Excel file.
workbook->Save(outputDeleteColumns);
无需MS Office创建Excel!在C ++中以编程方是在Excel中插入和删除行和列

如果你想试用Aspose的全部完整功能,可联系在线客服获取30天临时授权体验。


还想要更多吗?您可以点击阅读【Aspose最新资源在线文库】查找需要的教程资源。如果您有任何疑问或需求,请随时加入Aspose技术交流群(761297826),我们很高兴为您提供查询和咨询

标签:

本站文章除注明转载外,均为本站原创或翻译。欢迎任何形式的转载,但请务必注明出处、不得修改原文相关链接,如果存在内容上的异议请邮件反馈至chenjj@cahobeh.cn


为你推荐

  • 推荐视频
  • 推荐活动
  • 推荐产品
  • 推荐文章
  • 慧都慧问
扫码咨询


添加微信 立即咨询

电话咨询

客服热线
023-68661681

TOP