FormSubmitter constructor

init

Initializes a new instance of the FormSubmitter class based on HTMLFormElement.

def __init__(self, form):
    ...
ParameterTypeDescription
formHTMLFormElementThe html form element.

init

Initializes a new instance of the FormSubmitter class.

def __init__(self, editor):
    ...
ParameterTypeDescription
editorFormEditorThe FormEditor.

init

Initializes a new instance of the FormSubmitter class based on HTMLFormElement selected by index from HTMLDocument.

def __init__(self, document, index):
    ...
ParameterTypeDescription
documentHTMLDocumentThe HTML document.
indexintThe 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):
    ...
ParameterTypeDescription
documentHTMLDocumentThe HTML document.
idstrThe element identifier.

See Also