officefileapi-devexpress-dot-xtrarichedit-04f32261.md
Lists options which determine how the Field.Locked property affects field updates.
Namespace : DevExpress.XtraRichEdit
Assembly : DevExpress.RichEdit.v25.2.Core.dll
NuGet Package : DevExpress.RichEdit.Core
public enum UpdateLockedFields
Public Enum UpdateLockedFields
| Name | Description |
|---|---|
Always |
Locked fields are updated.
|
| Never |
Locked fields are not updated. Default value.
|
| DocVariableOnly |
Only DOCVARIABLE fields are updated.
|
The following properties accept/return UpdateLockedFields values:
| Library | Related API Members |
|---|---|
| WPF Controls | DXRichEditFieldOptions.UpdateLockedFields |
| Office File API | FieldOptions.UpdateLockedFields |
Normally, the Field.Locked property set true prevents a field from updating. However, you can specify the FieldOptions.UpdateLockedFields property value to update a locked field of any type, or a specific type (namely, the DOCVARIABLE field
See Also