CommentAuthorCollection

CommentAuthorCollection class

Represents a collection of comment authors.

public sealed class CommentAuthorCollection : DomObject<Presentation>, ICommentAuthorCollection

Properties

NameDescription
Count { get; }Gets the number of elements actually contained in the collection. Read-only Int32.
IsSynchronized { get; }Returns a value indicating whether access to the collection is synchronized (thread-safe). Read-only Boolean.
Item { get; }Gets the element at the specified index. Read-only ICommentAuthor.
SyncRoot { get; }Returns a synchronization root. Read-only Object.

Methods

NameDescription
AddAuthor(string, string)Add new author at the end of a collection.
Clear()Removes all authors from a collection.
CopyTo(Array, int)Copies all elements from the collection to the specified array.
FindByName(string)Find author in a collection by name.
FindByNameAndInitials(string, string)Find author in a collection by name and initials.
GetEnumerator()Returns an enumerator that iterates through the collection.
Remove(ICommentAuthor)Removes the first occurrence of the specified author in a collection.
RemoveAt(int)Removes the author at the specified index of the collection.
ToArray()Creates and returns an array with all authors.

See Also