Click or drag to resize
SignDocDocumentgetFieldsOfPage Method
Get all interactive fields of the specified page, in tab order. If the document does not specify a tab order, the fields will be returned in widget order. There is a setFlags() flag modifying the behavior of this function: AbiguousButtonValueEmpty.

Namespace:  de.softpro.signdocsdk
Assembly:  SPSignDoc_4.3_DotNetLib (in SPSignDoc_4.3_DotNetLib.dll) Version: 1.0.6773.37566
Syntax
C#
public SignDocField[] getFieldsOfPage(
	int page,
	FieldTypeFlag types
)

Parameters

page
Type: SystemInt32
The 1-based page number.
types
Type: de.softpro.signdocsdk.Enums.EDocumentFieldTypeFlag
0 to get fields of all types. Otherwise, a bitset selecting the field types to be included.

Return Value

Type: SignDocField
An array containing the selected fields in tab order. There will be one element per widget (rather than per field); use SignDocField.getWidget() to find out which widget of the field is referenced.
Remarks
Structure order (S) is not yet supported. If the page specifies structure order, the fields will be returned in widget order.
See Also