[]
        
(Showing Draft Content)

GrapeCity.Documents.Pdf.Actions.ActionFieldsBase

Class ActionFieldsBase

Namespace
GrapeCity.Documents.Pdf.Actions
Assembly
GcDocs.Pdf.dll

Base class for ActionSubmitForm and ActionResetForm, which operates over set of specified fields.

public abstract class ActionFieldsBase : ActionBase, IPdfDict
Inheritance
object
ActionFieldsBase
Implements
Inherited Members
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
Extension Methods

Properties

ExcludeSpecifiedFields

Gets or sets a value indicating whether the fields specified by the Fields list should be excluded for processing. By default this property is false, which means that the fields in the list are processed. If this property is set to true, the fields in the list are excluded from processing.

public bool ExcludeSpecifiedFields { get; set; }

Property Value

bool

Fields

Gets the list of fields that should be processed or excluded from processing (depending on the value of ExcludeSpecifiedFields) by this action. An item in this list can be either a field's name specified as a PdfString, or the Field object itself. An empty list means that all fields are included.

public IList<ActionFieldsBase.IFieldDef> Fields { get; }

Property Value

System.Collections.Generic.IList<T><ActionFieldsBase.IFieldDef>