Skip to main content
Bar

BarEditItem.EditWidth Property

Gets or sets the current BarEditItem's width.

Namespace: DevExpress.Xpf.Bars

Assembly: DevExpress.Xpf.Core.v14.2.dll

#Declaration

[XtraSerializableProperty]
public double? EditWidth { get; set; }

#Property Value

Type Description
Nullable<Double>

A Double value that is the current BarEditItem's width.

#Remarks

Any editor embedded in a BarEditItem automatically gains the size required to display its content. You can manually specify the editor's height and width via the EditWidth and BarEditItem.EditHeight properties. The figure below illustrates an example: several edit items have different heights and widths.

BarEditItem EditWidth

These properties also specify sizes for all BarEditItemLinks related to the current BarEditItem. To set a unique size for an individual BarEditItemLink, use the BarEditItemLink.EditHeight and BarEditItemLink.EditWidth properties instead.

See Also