ICommentAuthorCollection class

ICommentAuthorCollection class

Represents a collection of comment authors.

The ICommentAuthorCollection type exposes the following members:

Gets the element at the specified index. Read-only ICommentAuthor.

Indexer

NameDescription
[index]

Methods

MethodDescription
add_author(self, name, initials)Add new author at the end of a collection.
to_array(self)Creates and returns an array with all authors.
find_by_name(self, name)Find author in a collection by name.
find_by_name_and_initials(self, name, initials)Find author in a collection by name and initials.
remove_at(self, index)Removes the author at the specified index of the collection.
remove(self, author)Removes the first occurrence of the specified author in a collection.
clear(self)Removes all authors from a collection.

See Also