add_input method
add_input
Creates a new InputElement
and adds it to the end of the form.
Returns
Returns a new created InputElement
.
def add_input(self, name):
...
Parameter | Type | Description |
---|---|---|
name | str | Name of input element |
add_input
Creates a new InputElement
and adds it to the end of the form.
Returns
Returns a new created InputElement
.
def add_input(self, name, type):
...
Parameter | Type | Description |
---|---|---|
name | str | Name of input element |
type | InputElementType | Type of input element |
See Also
- module
aspose.html.forms
- class
FormEditor
- class
InputElement