CellSecureTextAttrs Enumeration |
Namespace:
NetQuarry.Data
Assembly:
EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax [FlagsAttribute]
public enum CellSecureTextAttrs
<FlagsAttribute>
Public Enumeration CellSecureTextAttrs
Members
| Member name | Value | Description |
---|
| SystemKey | 1 | Encrypt/decrypt this field's data using the SystemKey. |
| AutoAssignKey | 2 |
Generate a custom key when first encrypting this field's data.
For later decryption, the key will be stored in the field specified in the
EncryptionKey property.
|
| NoReadAudit | 4 | Do not log audit records when user views this field's data. |
| AllowListDecrypt | 8 | Allow user to decrypt and view data from list views. |
| ShowInAlert | 16 | When user retrieves a decrypted value, display the value in a javascript alert popup. |
| ShowInWidget | 32 | When user retrieves a decrypted value, display the value in an in-place div widget. |
| ShowInPlace | 64 | When user retrieves a decrypted value, display the value in place replacing the password control with a textbox control. Supports Masks. |
| NoAutoEncrypt | 256 |
Do not encrypt data when saving.
If not set, encryption is performed if the field's EncryptionKey
or SystemKey attribute is set.
|
| NoDecryptUI | 512 | Do not provide automatic decryption in the UI. |
| NoAutoComplete | 1024 | Disables the browser's built-in AutoComplete feature. |
See Also