The input element of type field is used to add an input field to the current page.
Element | Attributes | Value | Notes for Element/Attribute/Value |
|---|---|---|---|
input | type | field | |
name | string | ||
value | string | ||
x1 | integer | Default is 0. | |
y1 | integer | Default is 0. | |
width | integer | Default is 0. | |
height | integer | Default is 20. | |
length | integer | Default is 0. A value of 0 indicates no input limit. | |
style | style | Default is Helvetica, 10, normal. | |
multiline | boolean | Default is false. | |
readonly | boolean | Default is false. | |
required | boolean | Default is false. | |
export | boolean | Default is true. |
<input type="field" name="FIELD1" required="true" value="text" x1="100" y1="750" width="200" length="15" style="form"/>
<input type="field" name="FIELD2" multiline="true" readonly="true" export="false" value="text" x1="100" y1="720" width="200" height="50" length="200" style="form"/>