DigitalSignOptions constructor
Leave feedback
On this page
Initializes a new instance of the DigitalSignOptions class with default values.
def __init__(self):
...
Initializes a new instance of the DigitalSignOptions class with certificate file.
def __init__(self, certificate_file_path):
...
| Parameter | Type | Description |
|---|---|---|
| certificate_file_path | System.String | Digital certificate file path |
Initializes a new instance of the DigitalSignOptions class with certificate stream.
def __init__(self, certificate_stream):
...
| Parameter | Type | Description |
|---|---|---|
| certificate_stream | io.RawIOBase | Digital Certificate stream |
Initializes a new instance of the DigitalSignOptions class with certificate file and image file.
def __init__(self, certificate_file_path, image_file_path):
...
| Parameter | Type | Description |
|---|---|---|
| certificate_file_path | System.String | Digital certificate file path |
| image_file_path | System.String | Signature Appearance image file path |
Initializes a new instance of the DigitalSignOptions class with certificate file and image stream.
def __init__(self, certificate_file_path, appearence_image_stream):
...
| Parameter | Type | Description |
|---|---|---|
| certificate_file_path | System.String | Digital certificate file path |
| appearence_image_stream | io.RawIOBase | Signature Appearance image stream |
Initializes a new instance of the DigitalSignOptions class with certificate stream and image file.
def __init__(self, certificate_stream, image_file_path):
...
| Parameter | Type | Description |
|---|---|---|
| certificate_stream | io.RawIOBase | Digital Certificate stream |
| image_file_path | System.String | Signature Appearance image file path |
Initializes a new instance of the DigitalSignOptions class with certificate stream and image stream.
def __init__(self, certificate_stream, appearence_image_stream):
...
| Parameter | Type | Description |
|---|---|---|
| certificate_stream | io.RawIOBase | Digital Certificate stream |
| appearence_image_stream | io.RawIOBase | Signature Appearance image stream |
- module
groupdocs.signature.options - class
DigitalSignOptions
Was this page helpful?
Any additional feedback you'd like to share with us?
Please tell us how we can improve this page.
Thank you for your feedback!
We value your opinion. Your feedback will help us improve our documentation.