FormSubmitter constructor
Contents
[
Hide
]init
Initializes a new instance of the FormSubmitter class based on HTMLFormElement.
def __init__(self, form):
...
| Parameter | Type | Description |
|---|---|---|
| form | HTMLFormElement | The html form element. |
init
Initializes a new instance of the FormSubmitter class.
def __init__(self, editor):
...
| Parameter | Type | Description |
|---|---|---|
| editor | FormEditor | The FormEditor. |
init
Initializes a new instance of the FormSubmitter class based on HTMLFormElement selected by index from HTMLDocument.
def __init__(self, document, index):
...
| Parameter | Type | Description |
|---|---|---|
| document | HTMLDocument | The HTML document. |
| index | int | The index of the form. |
init
Initializes a new instance of the FormSubmitter class based on HTMLFormElement selected by identifier from HTMLDocument.
def __init__(self, document, id):
...
| Parameter | Type | Description |
|---|---|---|
| document | HTMLDocument | The HTML document. |
| id | str | The element identifier. |
See Also
- module
aspose.html.forms - class
FormSubmitter - class
HTMLDocument - class
HTMLFormElement