Item
内容
[
隐藏
]CommentCollection indexer (1 of 3)
获取Comment
指定索引处的元素。
public Comment this[int index] { get; }
范围 | 描述 |
---|---|
index | 元素的从零开始的索引。 |
返回值
指定索引处的元素。
例子
[C#]
Comment comment3 = comments[0];
comment3.Note = "Three note.";
也可以看看
- class Comment
- class CommentCollection
- 命名空间 Aspose.Cells
- 部件 Aspose.Cells
CommentCollection indexer (2 of 3)
获取Comment
指定单元格处的元素。
public Comment this[string cellName] { get; }
范围 | 描述 |
---|---|
cellName | 单元格名称。 |
返回值
指定单元格处的元素。
例子
[C#]
Comment comment4 = comments["B2"];
comment4.Note = "Four note.";
也可以看看
- class Comment
- class CommentCollection
- 命名空间 Aspose.Cells
- 部件 Aspose.Cells
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.";
也可以看看
- class Comment
- class CommentCollection
- 命名空间 Aspose.Cells
- 部件 Aspose.Cells