[]
        
(Showing Draft Content)

C1.Report.TextField.-ctor

TextField Constructor

TextField()

Initialize a new instance of the TextField class.

Declaration
public TextField()
Public Sub New()

TextField(string)

Initializes a new instance of the TextField class.

Declaration
public TextField(string text)
Public Sub New(text As String)
Parameters
Type Name Description
string text

The text of the field.

TextField(string, string)

Initializes a new instance of the TextField class.

Declaration
public TextField(string name, string text)
Public Sub New(name As String, text As String)
Parameters
Type Name Description
string name

The name of the field

string text

The text of the field.

TextField(string, string, double, double, double, double)

Initializes a new instance of the TextField class.

Declaration
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)
Parameters
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.