ICommentAuthorCollection
Přehled
ICommentAuthorCollection je rozhraní v Aspose.Slides FOSS pro Java.
Zobrazuje sbírku komentářů autorů v prezentaci.
Metody
| Podpis: | Popis: |
|---|---|
addAuthor(name: String, initials: String) → ICommentAuthor | Přidává nového autora. |
toArray() → ICommentAuthor[] | Vrátí všechny autory jako soubor. |
findByName(name: String) → List<ICommentAuthor> | Najde autory podle jména. |
findByNameAndInitials(name: String, initials: String) → List<ICommentAuthor> | Najde autory podle jména a iniciálů. |
removeAt(index: int) | Odstraňuje autora z uvedeného indexu, včetně všech jeho připomínek. |
remove(author: ICommentAuthor) | Odstraňuje autora z sbírky. |
clear() | Odstraňuje všechny autory a jejich komentáře z sbírky. |
get(index: int) → ICommentAuthor | Vrátí autor v daném indexu. |
size() → int | Vrací se počet autorů. |
asICollection() → List<ICommentAuthor> | Vrátí soubor jako {@link list}. |
asIEnumerable() → Iterable<ICommentAuthor> | Vrátí soubor jako {@link Iterable}. |