java.lang.Objectcom.aspose.words.RevisionCollection
public class RevisionCollection
You do not create instances of this class directly. Use the
Property Getters/Setters Summary | ||
---|---|---|
int | getCount() | |
Returns the number of revisions in the collection. | ||
Revision | get(int index) | |
Returns a Revision at the specified index. |
Method Summary | ||
---|---|---|
void | acceptAll() | |
Accepts all revisions in this collection. | ||
java.util.Iterator | iterator() | |
Returns an enumerator object. | ||
void | rejectAll() | |
Rejects all revisions in this collection. |
Property Getters/Setters Detail |
---|
getCount | |
public int getCount() |
get | |
public Revision get(int index) |
The index is zero-based.
Negative indexes are allowed and indicate access from the back of the collection. For example -1 means the last item, -2 means the second before last and so on.
If index is greater than or equal to the number of items in the list, this returns a null reference.
If index is negative and its absolute value is greater than the number of items in the list, this returns a null reference.
index
- An index into the collection.Method Detail |
---|
acceptAll | |
public void acceptAll() throws java.lang.Exception |
iterator | |
public java.util.Iterator iterator() |
rejectAll | |
public void rejectAll() throws java.lang.Exception |