PdfSubmitAction
Include Property
|
Gets or sets a value indicating whether fields contained in Fields
collection will be included for submitting.
Namespace:
Spire.Pdf.Actions
Assembly:
Spire.Pdf (in Spire.Pdf.dll) Version: 11.3.7.0 (11.3.7.1046)
Syntax
public override bool Include { get; set; }
Public Overrides Property Include As Boolean
Get
Set
public:
virtual property bool Include {
bool get () override;
void set (bool value) override;
}
abstract Include : bool with get, set
override Include : bool with get, set
Property Value
Type:
Boolean
true
if include; otherwise,
false
.
Remarks
If Include property is true, only the fields in this collection will be submitted.
If Include property is false, the fields in this collection are not submitted
and only the remaining form fields are submitted.
If the collection is null or empty, then all the form fields are reset
and the Include property is ignored.
If the field has Export property set to false it will be not included for
submitting in any case.
See Also