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