SubmitFields Form action

Namespace: TallComponents.PDF.Actions
Assembly: TallComponents.PDF.Controls.WinForms (in TallComponents.PDF.Controls.WinForms.dll) Version: 2.0.46.0

Syntax

C#
public virtual void SubmitFields(
	string url,
	Field[] fields,
	SubmitFormat submitFormat,
	HttpMethod httpMethod,
	bool includeEmptyFields,
	bool convertDatesToStandardFormat,
	ActionContext context
)
Visual Basic
Public Overridable Sub SubmitFields ( _
	url As String, _
	fields As Field(), _
	submitFormat As SubmitFormat, _
	httpMethod As HttpMethod, _
	includeEmptyFields As Boolean, _
	convertDatesToStandardFormat As Boolean, _
	context As ActionContext _
)

Parameters

url
Type: System..::..String
The url used to submit to.
fields
Type: array<TallComponents.PDF.Forms.Fields..::..Field>[]()[][]
The fields to submit.
submitFormat
Type: TallComponents.PDF.Actions..::..SubmitFormat
The submit format specifies what to submit to the server.
httpMethod
Type: TallComponents.PDF.Actions..::..HttpMethod
The http method specifies how to submit to the server.

Remarks

This property is meaningfull for SubmitFormat: Pdf and Html
includeEmptyFields
Type: System..::..Boolean
Fields without a value should be submitted also.

Remarks

This property has no meaning for SubmitFormat: Pdf
convertDatesToStandardFormat
Type: System..::..Boolean
When submitting all fields which contains a date are converted to a predefined format, otherwise the value is submitted as-is (aka how the user entered the data).

Remarks

This property has no meaning for SubmitFormat: Pdf.

The predefined format: 'D:yyyymmdd' (without the quotes)

context
Type: TallComponents.PDF.Actions..::..ActionContext
The context in which this action is executed.

Remarks

context can be nullNothingnullptra null reference (Nothing in Visual Basic).

See Also