CellArea

CellArea structure

代表一个单元格区域。

public struct CellArea : IComparable

方法

姓名描述
static CreateCellArea(string, string)创建一个单元格区域。
static CreateCellArea(int, int, int, int)创建一个单元格区域。
CompareTo(object)仅供内部使用。
override ToString()返回代表当前 Worksheet 对象的字符串。

字段

姓名描述
EndColumn获取或设置该区域的结束列
EndRow获取或设置该区域的结束行。
StartColumn获取或设置该区域的起始列
StartRow获取或设置该区域的起始行。

例子


[C#]

//创建单元格区域
CellArea ca = new CellArea();
ca.StartRow = 0;
ca.EndRow = 0;
ca.StartColumn = 0;
ca.EndColumn = 0;

[VB.NET]

'创建单元格区域
Dim ca As CellArea = New CellArea()
ca.StartRow = 0
ca.EndRow = 0
ca.StartColumn = 0
ca.EndColumn = 0

也可以看看