PDFView4NET WPF Edition
Fields Property (PDFSubmitFormAction)




O2S.Components.PDFView4NET.Actions Namespace > PDFSubmitFormAction Class : Fields Property
Gets or sets the list of fields affected by this action.
Syntax
'Declaration
 
Public Property Fields As List(Of String)
'Usage
 
Dim instance As PDFSubmitFormAction
Dim value As List(Of String)
 
instance.Fields = value
 
value = instance.Fields
public List<string> Fields {get; set;}
public: __property List<string*>* get_Fields();
public: __property void set_Fields( 
   List<string*>* value
);
public:
property List<String^>^ Fields {
   List<String^>^ get();
   void set (    List<String^>^ value);
}

Property Value

A System.Collections.Specialized.StringCollection object specifying the list of fields affected by this action.
Remarks
The SubmitFields property controls how the fields in this collection are submitted to the specified URL.
If SubmitFields property is true, only the fields in this collection will be submitted.
If SubmitFields property is false, the fields in this collection will not be submitted and only the remaining form fields will be submitted.
If the collection is null or empty, then all the form fields are submitted and the SubmitFields property is ignored.
In any of the situations above, the fields with PDFField.NoExport property set to true will not be submitted.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

PDFSubmitFormAction Class
PDFSubmitFormAction Members