FieldListOptions Enumeration |
Options affecting behaviour of
IField objects in list views.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum FieldListOptions
<FlagsAttribute>
Public Enumeration FieldListOptions
Members
| Member name | Value | Description |
---|
| RetainLineBreaks | 1 | Retain line breaks in the content in list views. |
| RestrictLength | 2 | Restrict the length of the content (currently to approximately 500 characters). |
| Trim | 4 | Trim leading and trailing whitespace. |
| LinkIfTruncated | 8 | Provide a link to the detail record if content is truncated. |
| NoAutoSuggest | 16 | Do not provide AutoSuggest in editable datasheets. Applies only when the AutoSuggest cell attribute is set. |
| AllowLockedFieldSave | 32 | Allow EditInList saving even if field is detected to be locked during the BulkUpdate. Use with CAUTION - overrides standard list security which prevents this. |
| UseAsSelector | 64 | Render this field in the Find datasheet as an item selector. |
| NoFillDown | 128 | Prevents datasheet FillDown from being applied on this field. |
| SupportsColumnClick | 256 | This field provides handling for FieldButtonClick events on an entire column. Suppress by setting NoColButtons. |
See Also