[]
Initialize a new instance of the TextField class.
public TextField()
Initializes a new instance of the TextField class.
public TextField(string text)
Type | Name | Description |
---|---|---|
string | text | The text of the field. |
Initializes a new instance of the TextField class.
public TextField(string name, string text)
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)
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. |