Click or drag to resize

DocumentAppendingEventArgsIncludeForm Property

Gets or sets a value indicating whether the form fields on pages in the DataToAppend or DocumentToAppend should be included in the document.

Namespace:  RadPdf.Integration
Assembly:  RadPdf (in RadPdf.dll) Version: 3.44.0.0 (3.44.0.0)
Syntax
public bool IncludeForm { get; set; }

Property Value

Type: Boolean
Whether the server should include form fields in the DataToAppend or DocumentToAppend. The default value is true.
Remarks

Setting this property to false will remove all form fields from the DataToAppend or DocumentToAppend.

Setting this property to true will force the server to include form fields when appending. This may cause unintended issues if the existing document and DataToAppend / DocumentToAppend both contain form fields with the same name. Form fields with the same name will be bound to eachother, all having the same value. If form fields with the same name are of a different type, one of the two may be removed. Additionally, if AppendType is Document, if a field of a name was deleted (or unlocked) in either the original or appended document, this may delete all fields of that name in the resulting document.

This property is always true if AppendType is Document.

See Also