CommentCollection

CommentCollection class

Encapsule une collection deComment objets.

public class CommentCollection : CollectionBase<Comment>

Propriétés

NomLa description
Capacity { get; set; }
Count { get; }
Item { get; }Obtient leComment élément à l’index spécifié. (3 indexers)
Item { get; set; }

Méthodes

NomLa description
Add(string)Ajoute un commentaire à la collection.
Add(int, int)Ajoute un commentaire à la collection.
AddThreadedComment(string, string, ThreadedCommentAuthor)Ajoute un fil de discussion.
AddThreadedComment(int, int, string, ThreadedCommentAuthor)Ajoute un fil de discussion.
BinarySearch(Comment)
BinarySearch(Comment, IComparer<Comment>)
BinarySearch(int, int, Comment, IComparer<Comment>)
Clear()Supprime tous les commentaires ; (2 methods)
Contains(Comment)
CopyTo(Comment[])
CopyTo(Comment[], int)
CopyTo(int, Comment[], int, int)
Exists(Predicate<Comment>)
Find(Predicate<Comment>)
FindAll(Predicate<Comment>)
FindIndex(Predicate<Comment>)
FindIndex(int, Predicate<Comment>)
FindIndex(int, int, Predicate<Comment>)
FindLast(Predicate<Comment>)
FindLastIndex(Predicate<Comment>)
FindLastIndex(int, Predicate<Comment>)
FindLastIndex(int, int, Predicate<Comment>)
GetEnumerator()
GetThreadedComments(string)Obtient les commentaires thématiques par nom de cellule.
GetThreadedComments(int, int)Obtient les commentaires filetés par index de ligne et de colonne.
IndexOf(Comment)
IndexOf(Comment, int)
IndexOf(Comment, int, int)
LastIndexOf(Comment)
LastIndexOf(Comment, int)
LastIndexOf(Comment, int, int)
RemoveAt(int)
RemoveAt(string)Supprime le commentaire de la cellule spécifique.
RemoveAt(int, int)Supprime le commentaire de la cellule spécifique.

Exemples

[C#]

Workbook workbook = new Workbook();

CommentCollection comments = workbook.Worksheets[0].Comments;

//faites vos affaires

[Visual Basic]

Dim workbook as Workbook = new Workbook()

Dim comments as CommentCollection = workbook.Worksheets(0).Comments

Voir également