Skip to main content

EditBase.ReserveBottomTextLine Property

Allows you to reserve a line for the error text below the edit box.

Namespace: DevExpress.XamarinForms.Editors

Assembly: DevExpress.XamarinForms.Editors.dll

NuGet Package: DevExpress.XamarinForms.Editors

Declaration

public bool ReserveBottomTextLine { get; set; }

Property Value

Type Description
Boolean

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