Item

CommentCollection indexer (1 of 3)

获取Comment指定索引处的元素。

public Comment this[int index] { get; }
范围描述
index元素的从零开始的索引。

返回值

指定索引处的元素。

例子


[C#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";

也可以看看


CommentCollection indexer (2 of 3)

获取Comment指定单元格处的元素。

public Comment this[string cellName] { get; }
范围描述
cellName单元格名称。

返回值

指定单元格处的元素。

例子


[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";

也可以看看


CommentCollection indexer (3 of 3)

获取Comment指定行索引和列索引处的元素。

public Comment this[int row, int column] { get; }
范围描述
row行索引。
column列索引。

返回值

指定单元格处的元素。

例子


[C#]
Comment comment5 = comments[1,1];
comment5.Note = "Five note.";

也可以看看