FieldOptions.UpdateLockedFields Property
Gets or sets whether locked fields can be updated.
Namespace: DevExpress.XtraRichEdit
Assembly: DevExpress.RichEdit.v20.2.Core.dll
Declaration
Property Value
Type | Description |
---|---|
UpdateLockedFields | An UpdateLockedFields enumeration member that specifies what fields can be updated. |
Property Paths
You can access this nested property as listed below:
Library | Object Type | Path to UpdateLockedFields |
---|---|---|
WinForms Controls | SnapControlOptions |
|
SnapControlOptions |
|
|
RichEditControlOptions |
|
|
WPF Controls | RichEditControlOptions |
|
Office File API | RichEditControlOptionsBase |
|
Remarks
Use the Field.Locked property to lock/unlock a field. The UpdateLockedFields option allows you to temporarily disable field lock for all fields, or for DOCVARIABLE fields only.
Examples
The code sample below allows to update DOCVARIABLE fields and updates all field in the main document body.
richEditControl2.Options.Fields.UpdateLockedFields = UpdateLockedFields.DocVariableOnly;
richEditControl2.Document.Fields.Update();
See Also
Feedback