Skip to main content
Bar

BarStaticItem.MinWidth Property

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

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

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

Property Value

Type Default Description
Int32 -1

An integer value that specifies the item’s minimum 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