FieldDiffOptions Enumeration |
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum FieldDiffOptions
<FlagsAttribute>
Public Enumeration FieldDiffOptions
Members
| Member name | Value | Description |
---|
| Atomic | 1 | Treat the field value as atomic and show any change as a complete replacement of the old value with the new value rather than performing a character-by-character diff. |
| ExcelDiff | 2 | Use Microsoft Excel markups in the diff. |
| IncludeCaption | 4 | Include the field caption in the diffed text. |
| ForReadableAudit | 8 | Format the returned text for readable audit. |
| TreatAsSecure | 16 | The field should be treated as secure for purposes of generating the diff. |
| IsNew | 32 | This diff concerns a new record and any OldValue is not meaningful. Primarily intended for use when auditing secure fields. |
| IsDelete | 64 | This diff concerns a record being deleted. Primarily intended for use when auditing secure fields. |
See Also