Skip to main content
A newer version of this page is available. .

UpdateFieldsOptions Class

Contains field update options.

Declaration

export class UpdateFieldsOptions

Remarks

var doInAllSubDocuments = true;
var updateTocFields = true;
var options = new DevExpress.RichEdit.UpdateFieldsOptions(doInAllSubDocuments, updateTocFields);
richEdit.document.fields.updateAllFields(function() {
    console.log('Updated');
}, options);

constructor

Initializes a new instance of the UpdateFieldsOptions class with specified settings.

Declaration

constructor(
    doInAllSubDocuments?: boolean,
    updateTocFields?: boolean
)

Parameters

Name Type Description
doInAllSubDocuments boolean

true, to update fields in all sub-documents, false, to update fields in the current sub-document only.

updateTocFields boolean

true, to update TOC fields; otherwise, false.

Properties

doInAllSubDocuments Property

Specifies whether to update fields in the current sub-document or in all sub-documents.

Declaration

doInAllSubDocuments: boolean

Property Value

Type Description
boolean

true, to update fields in all sub-documents, false, to update fields in the current sub-document only.

updateTocFields Property

Specifies whether TOC fields should be updated.

Declaration

updateTocFields: boolean

Property Value

Type Description
boolean

true, to update TOC fields; otherwise, false.