Skip to main content

SubDocument.fieldsInfo Property

Returns information about fields in the sub-document.

#Declaration

TypeScript
get fieldsInfo(): Field[]

#Property Value

Type Description
Field[]

An array of objects that contain information about fields.

#Remarks

// Gets all fields in the main sub-document
var mainSubDocumentFields = richEdit.document.mainSubDocument.fieldsInfo;

You can use the findFields(arg) method to get an array of fields that match the search conditions.

Refer to the following section for more information: Access a Structural Element.

See Also