public class SignatureOptionsCollection extends Object implements com.aspose.ms.System.ICloneable, com.aspose.ms.System.Collections.Generic.IGenericEnumerable<SignOptions>
Collection of Signature Options - keeps list of options to sign the document.
Constructor and Description |
---|
SignatureOptionsCollection()
Create SignatureOptionsCollection instance with empty list.
|
SignatureOptionsCollection(List<SignOptions> items)
Create SignatureOptionsCollection instance with list of Signature Options objects.
|
SignatureOptionsCollection(SignOptions options)
Create SignatureOptionsCollection instance with one Signature Options value.
|
Modifier and Type | Method and Description |
---|---|
void |
add(SignOptions options)
Adds an SignOptions object to collection.
|
Object |
deepClone()
Clone Signature Options Collection class with Signature Options Items
|
List<SignOptions> |
getItems()
List of Signature Options records.
|
boolean |
remove(SignOptions options)
Removes an SignOptions object from collection.
|
public SignatureOptionsCollection()
Create SignatureOptionsCollection instance with empty list.
public SignatureOptionsCollection(List<SignOptions> items)
Create SignatureOptionsCollection instance with list of Signature Options objects.
items
- List of Signature Options items.public SignatureOptionsCollection(SignOptions options)
Create SignatureOptionsCollection instance with one Signature Options value.
options
- Signature Options to be added in list.public void add(SignOptions options)
Adds an SignOptions object to collection.
options
- The Signature Options to be added to collection.public Object deepClone()
Clone Signature Options Collection class with Signature Options Items
deepClone
in interface com.aspose.ms.System.ICloneable
public List<SignOptions> getItems()
List of Signature Options records.
public boolean remove(SignOptions options)
Removes an SignOptions object from collection.
options
- The Signature Options to be removed from collection.