Click or drag to resize

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
Members
  Member nameValueDescription
MultiLine1The control should allow multiple lines of text.
AutoSuggest16Auto suggest selections based on partial entries typed by user and matching distinct values in the underlying column.
NoAutoComplete32Disables the browser's built-in AutoComplete feature.
AutoSuggestFilter64In the FBF row, auto suggest selections based on partial entries typed by user and matching distinct values in the underlying column.
AutoResizeHorizontal256Auto-resize this field's control horizontally when the window is resized. Currently applies only to popups and is not supported in Opera.
AutoResizeVertical512Auto-resize this field's control vertically when the window is resized. Currently applies only to popups and is not supported in Opera.
NoFilterPicklist1024Do not use the picklist filter widget for this field in the datasheet. Applies only when field has a Picklist.
ReservedALW2048 Obsolete. Deprecated -- use AllowListWrap.
NoMultiLineResize4096Disables the built-in TEXTAREA resizing on Webkit browsers (Safari/Chrome) using the 'resize=none' style.
NoAutoCapitalize8192Disables the browser's built-in AutoCapitalize feature.
NoAutoCorrect16384Disables the browser's built-in AutoCorrect feature.
Encrypted32768 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.
AllowNotInListValues65536 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.
NoSpellcheck131072Disables the browser's built-in Spellcheck feature.
See Also