Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

TcxCustomBlobEditProperties.MemoCharCase Property

Specifies the case conversion settings applied to the text entered into a BLOB editor in memo mode.

#Declaration

Delphi
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