[]
Initialize a new instance of the TextField class.
public TextField()
Public Sub New()
Initializes a new instance of the TextField class.
public TextField(string text)
Public Sub New(text As String)
| Type | Name | Description |
|---|---|---|
| string | text | The text of the field. |
Initializes a new instance of the TextField class.
public TextField(string name, string text)
Public Sub New(name As String, text As String)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the field |
| string | text | The text of the field. |
Initializes a new instance of the TextField class.
public TextField(string name, string text, double left, double top, double width, double height)
Public Sub New(name As String, text As String, left As Double, top As Double, width As Double, height As Double)
| Type | Name | Description |
|---|---|---|
| string | name | The name of the field |
| string | text | The text of the field. |
| double | left | Left coordinate of the new field, in twips, with respect to its containing section. |
| double | top | Top coordinate of the new field, in twips, with respect to its containing section. |
| double | width | Width of the new field, in twips. |
| double | height | Height of the new field, in twips. |