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

DataFormView.EditorLabelMinWidth Property

Gets or sets the minimum width of the data form’s editor labels. This is a bindable property.

Namespace: DevExpress.Maui.DataForm

Assembly: DevExpress.Maui.Editors.dll

NuGet Package: DevExpress.Maui.Editors

#Declaration

C#
public double EditorLabelMinWidth { get; set; }

#Property Value

Type Default Description
Double 0

The editor label’s minimum width.

#Remarks

Use the EditorWidth and EditorLabelWidth properties to set the width for all editors and editor labels that the data form displays. The EditorMinWidth/EditorMaxWidth and EditorLabelMinWidth/EditorLabelMaxWidth properties specify the minimum and maximum width that can be assigned to editors and labels, respectively.

You can also manage the width of individual editors and labels. To do this, use the following parameters of the DataFormDisplayOptionsAttribute attribute or properties of the DataFormItem descendant object:

  • EditorWidth, EditorMinWidth, EditorMaxWidth
  • LabelWidth, LabelMinWidth, LabelMaxWidth

The EditorWidth and EditorLabelWidth properties allow you to define absolute or proportional (*) width values. EditorLabelWidth can also have the Auto value.

See Also