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

EditBase.ReserveBottomTextLine Property

Gets or sets whether the line with the error text below the edit box is reserved. This is a bindable property.

Namespace: DevExpress.Maui.Editors

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public bool ReserveBottomTextLine { get; set; }

#Property Value

Type Default Description
Boolean false

true to reserve a line for the error text; otherwise, false

#Remarks

You can display HelpText or ErrorText (if the HasError property is true) below an editor. If HelpText is not set, ErrorText appears as an additional line below the edit box and page content shifts down. To prevent this behavior, set the ReserveBottomTextLine property to true.

You can also use the following properties to configure the help/error text appearance in different states:

Property

Description

HelpTextColor
DisabledHelpTextColor

Specify the help text color for an editor’s various states.

BottomTextFontSize
BottomTextFontFamily
BottomTextFontAttributes

Configure the font settings for text displayed below the editor.

BottomTextTopIndent

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

See Also