TcxCustomBlobEditProperties.MemoCharCase Property
Specifies the case conversion settings applied to the text entered into a BLOB editor in memo mode.
Declaration
property MemoCharCase: TEditCharCase read; write; default ecNormal;
Property Value
Type | Default |
---|---|
TEditCharCase | ecNormal |
Remarks
Use the MemoCharCase property to specify the case conversion settings for the BLOB editor in memo mode. These settings are applied both to text entered by typing or pasting within the memo editor and to text specified via the EditValue property.
Value | Meaning |
---|---|
ecLowerCase | The memo text is converted to lower case. |
ecNormal | No case conversion is performed. |
ecUpperCase | The memo text is converted to upper case. |
The default value of the MemoCharCase property is ecNormal.
See Also