Form.Add

Add(Field, int)

Adds field on the form.

public void Add(Field field, int pageNumber)
ParameterTypeDescription
fieldFieldField which must be added.
pageNumberInt32Page index where added field will be placed.

See Also


Add(Field)

Adds field on the form.

public void Add(Field field)
ParameterTypeDescription
fieldFieldField which must be added.

See Also


Add(Field, string, int)

Adds new field to the form; If this field is already placed on other or this form, the copy of field is created.

public Field Add(Field field, string partialName, int pageNumber)
ParameterTypeDescription
fieldFieldField name.
partialNameStringName of field on the form.
pageNumberInt32Page number where field will be added.

Return Value

Added field returned. If copy of the field was created it will be returned.

See Also