Skip to main content

EditBase.DisabledHelpTextColor Property

Gets or sets the color of the help text shown below the disabled editor. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

Declaration

public Color DisabledHelpTextColor { get; set; }

Property Value

Type Description
Color

The help text color.

Remarks

DisabledHelpTextColor specifies HelpText color when an editor is in a disabled state. To disable an editor, set its IsEnabled property to false.

DevExpress MAUI TextEdit - BottomText - Disabled

To specify the help text color for an editor’s focused and unfocused states, use the HelpTextColor property.

You can also use the following properties to configure the help text appearance:

Property

Description

BottomTextFontSize
BottomTextFontFamily
BottomTextFontAttributes

Configure font settings.

BottomTextTopIndent

Sets the distance between the editor’s help text and its bottom border.

These properties also affect ErrorText. To set the color of the error message, editor borders, label, and error icon, use the ErrorColor property.

Example

This example shows how to customize the appearance of an editor’s help/error text:

State/Appearance

Default

Custom

Default

DevExpress MAUI TextEdit - BottomText Default

DevExpress MAUI TextEdit - BottomText

Disabled

DevExpress MAUI TextEdit - BottomText Disabled Default

DevExpress MAUI TextEdit - BottomText Disabled

Error

DevExpress MAUI TextEdit - BottomText Error Default

DevExpress MAUI TextEdit - BottomText Error

<dxe:TextEdit BottomTextFontAttributes="Bold"
              BottomTextFontSize="18"
              BottomTextTopIndent="20"
              HelpText="Bottom text"
              HelpTextColor="Green"
              DisabledHelpTextColor="LightGreen"
              ErrorColor="Brown"
              ErrorText="Error text"/>
See Also