Skip to main content
All docs
V25.1
  • Bar

    BarStaticItem.MaxWidth Property

    Gets or sets the item’s maximum width in auto-size mode. Not in effect in a ribbon.

    Namespace: DevExpress.XtraBars

    Assembly: DevExpress.XtraBars.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    [DefaultValue(-1)]
    [SupportedByRibbon(SupportedByRibbonKind.NonSupported)]
    public virtual int MaxWidth { get; set; }

    Property Value

    Type Default Description
    Int32 -1

    An integer value that specifies the item’s maximum width.

    Remarks

    If the AutoSize option is set to Spring, the item is automatically stretched to fill all available free space in the bar. In the figure below, the document name in the status bar is automatically stretched when the form is resized.

    image

    The MinWidth and MaxWidth properties specify the width limits for this item. In the figure below, the item’s minimum and maximum width is limited.

    image

    If the MinWidth property is set to -1, the default width of 4 pixels applies. If the MaxWidth property is set to -1, the maximum width is not limited.

    See Also