CellTextBoxAttrs Enumeration |
Cell attributes specific to
TextBox cells.
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum CellTextBoxAttrs
<FlagsAttribute>
Public Enumeration CellTextBoxAttrs
Members
| Member name | Value | Description |
---|
| MultiLine | 1 | The control should allow multiple lines of text. |
| AutoSuggest | 16 | Auto suggest selections based on partial entries typed by user and matching distinct values in the underlying column. |
| NoAutoComplete | 32 | Disables the browser's built-in AutoComplete feature. |
| AutoSuggestFilter | 64 | In the FBF row, auto suggest selections based on partial entries typed by user and matching distinct values in the underlying column. |
| AutoResizeHorizontal | 256 | Auto-resize this field's control horizontally when the window is resized. Currently applies only to popups and is not supported in Opera. |
| AutoResizeVertical | 512 | Auto-resize this field's control vertically when the window is resized. Currently applies only to popups and is not supported in Opera. |
| NoFilterPicklist | 1024 | Do not use the picklist filter widget for this field in the datasheet. Applies only when field has a Picklist. |
| ReservedALW | 2048 | Obsolete. Deprecated -- use AllowListWrap. |
| NoMultiLineResize | 4096 | Disables the built-in TEXTAREA resizing on Webkit browsers (Safari/Chrome) using the 'resize=none' style. |
| NoAutoCapitalize | 8192 | Disables the browser's built-in AutoCapitalize feature. |
| NoAutoCorrect | 16384 | Disables the browser's built-in AutoCorrect feature. |
| Encrypted | 32768 |
The data is stored encrypted. The field should encrypt/decrypt the data when moving data to/from the database.
Specify a seed in the EncryptionKey property.
|
| AllowNotInListValues | 65536 |
When a picklist is specified, allows users to enter and save values that are not in the picklist without any programmatic intervention.
Generally used together with AutoSuggest.
Note that even when this attribute is set, the FieldAnomaly event with the NotInList anomaly
will still be fired, but the default action will be to allow the value.
|
| NoSpellcheck | 131072 | Disables the browser's built-in Spellcheck feature. |
See Also