|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<E>
java.util.ArrayList
aspose.pdf.Watermarks
public class Watermarks
Represents a collection of FloatingBox
,which lay upon other content for the
identification purpose as watermark, Only Image
, Graph
and
Text
are allowed in FloatingBox
. are added on each page.
Typical usages are the following:
Field Summary |
---|
Fields inherited from class java.util.AbstractList |
---|
modCount |
Constructor Summary | |
---|---|
Watermarks()
Construct a default Watermarks object . |
Method Summary | |
---|---|
void |
Add(FloatingBox watermark)
Adds a new Inserts a new object into the collection. |
void |
addPara(FloatingBox watermark)
Inserts a new FloatingBox object into the collection at specified position. |
void |
Insert(FloatingBox watermarkToInsertAfter,
FloatingBox newWatermark)
Inserts a new FloatingBox object into the collection after specified FloatingBox object. |
void |
insertPara(FloatingBox watermarkToInsertAfter,
FloatingBox newWatermark)
Inserts a new FloatingBox object into the collection after specified Cell object. |
void |
insertPara(int index,
FloatingBox watermark)
Inserts a new FloatingBox object into the collection after specified Cell object. |
Methods inherited from class java.util.ArrayList |
---|
add, add, addAll, addAll, clear, clone, contains, ensureCapacity, get, indexOf, isEmpty, lastIndexOf, remove, remove, removeRange, set, size, toArray, toArray, trimToSize |
Methods inherited from class java.util.AbstractList |
---|
equals, hashCode, iterator, listIterator, listIterator, subList |
Methods inherited from class java.util.AbstractCollection |
---|
containsAll, removeAll, retainAll, toString |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface java.util.List |
---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
Constructor Detail |
---|
public Watermarks()
Method Detail |
---|
public void Add(FloatingBox watermark)
watermark
- The FloatingBox
object to be added.public void addPara(FloatingBox watermark)
FloatingBox
object into the collection at specified position.
The zero-based index at witch FloatingBox
object should be inserted.
watermark
- The FloatingBox
object to be inserted.public void insertPara(int index, FloatingBox watermark)
FloatingBox
object into the collection after specified Cell object.
index
- The FloatingBox
object to insert after.watermark
- The FloatingBox
object to be inserted.public void insertPara(FloatingBox watermarkToInsertAfter, FloatingBox newWatermark)
FloatingBox
object into the collection after specified Cell object.
watermarkToInsertAfter
- The FloatingBox
object to insert after.newWatermark
- The FloatingBox
object to be inserted.public void Insert(FloatingBox watermarkToInsertAfter, FloatingBox newWatermark)
FloatingBox
object into the collection after specified FloatingBox
object.
watermarkToInsertAfter
- The FloatingBox
object to insert after.
If this object is null, the new object will be inserted as the first member.newWatermark
- The FloatingBox
object to be inserted.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |