Skip to main content
All docs
V25.1
  • RepositoryItemLookUpEdit.MaxDisplayTextLength Property

    Gets or sets the maximum number of characters displayed in the edit box.

    Namespace: DevExpress.XtraEditors.Repository

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [Browsable(false)]
    [DefaultValue(255)]
    [DXCategory("Behavior")]
    public int MaxDisplayTextLength { get; set; }

    Property Value

    Type Default Description
    Int32 255

    The maximum number of characters displayed in the edit box. The minimum value is 10.

    Remarks

    This property works in Multiple Item Selection mode only. If the total number of characters in the edit box exceeds the MaxDisplayTextLength, the editor displays the ellipsis after the last item. The LookUpEdit displays the last item completely even if it does not fully fit the MaxDisplayTextLength.

    LookUpEdit - MaxDisplayTextLength

    public Form1() {
        // ...
        lookUpEdit1.Properties.DataSource = Employee.GetSampleData();
        lookUpEdit1.Properties.DisplayMember = "FullName";
        lookUpEdit1.Properties.ValueMember = "ID";
        lookUpEdit1.Properties.EditValueType = DevExpress.XtraEditors.Repository.LookUpEditValueType.ValueList;
        lookUpEdit1.Properties.MaxDisplayTextLength = 15;
    }
    
    See Also