删除范围
Contents
[
Hide
]
介绍
在 Excel 中,您可以选择一个范围,然后删除它并向左或向上移动其他数据。
使用Aspose.Cells删除范围
Aspose.Cells 提供 Cells.DeleteRange 方法来删除一个区域。
删除范围并向左移动单元格
使用Aspose.Cells删除范围并向左移动单元格的示例代码如下:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Instantiate a new Workbook. | |
Workbook workbook = new Workbook(); | |
// Get all the worksheets in the book. | |
WorksheetCollection worksheets = workbook.getWorksheets(); | |
// Get the first worksheet in the worksheets collection. | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Get cells. | |
Cells cells = worksheet.getCells(); | |
// Set a few cells in the range. | |
cells.get("C2").putValue("C2"); | |
cells.get("C3").putValue("C3"); | |
CellArea ca = CellArea.createCellArea("B2", "B3"); | |
cells.deleteRange(1,1,2,2, ShiftType.LEFT); | |
String b2 = worksheet.getCells().get("B2").getStringValue(); | |
删除范围并向上移动单元格
使用Aspose.Cells删除范围并向上移动单元格的示例代码如下:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Instantiate a new Workbook. | |
Workbook workbook = new Workbook(); | |
// Get all the worksheets in the book. | |
WorksheetCollection worksheets = workbook.getWorksheets(); | |
// Get the first worksheet in the worksheets collection. | |
Worksheet worksheet = workbook.getWorksheets().get(0); | |
// Gets cells. | |
Cells cells = worksheet.getCells(); | |
// Get cells. | |
Cells cells = worksheet.getCells(); | |
// Set a few cells in the range. | |
cells.get("B4").putValue("B4"); | |
cells.get("B5").putValue("B5"); | |
cells.deleteRange(1,1,2,1, ShiftType.UP); |