Excel VBA 范围 -> ClearContents 的 .Net (C#) Apose.Cells 是什么?

What is the .Net (C#) Apose.Cells equivalent of Excel VBA range -> ClearContents?

我正在使用 Aspose.Cells.

将一些 Excel VBA 代码移植到 .Net (C#)

在下面的示例中,命名范围 "SomeRange" 指的是 到其他范围的集合。

["SomeRange"].Value = (SomeRange1, SomeRange2, SomeRange2)

这是 VBA 代码片段:

Dim rng As Range
Set rng = Range("SomeRange")
rng.ClearContents

我想遍历命名区域 "SomeRange."

中包含的每个子区域中的所有单元格

.Net (C#) 中的 Apose.Cells 等价物是什么?

谢谢,JB

请使用Worksheet.Cells.ClearContents()方法。其他有用和相关的方法是

Worksheet.Cells.ClearContents()
Worksheet.Cells.ClearFormats()
Worksheet.Cells.ClearRange()

注意:我在 Aspose 担任开发人员布道师