Skip to main content
A newer version of this page is available. .
Bar

BarItem.LargeGlyphDisabled Property

Gets or sets the large image that corresponds to the item’s disabled state.

Namespace: DevExpress.XtraBars

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

[Browsable(false)]
public virtual Image LargeGlyphDisabled { get; set; }

Property Value

Type Description
Image

A Image object that represents the large image that will be displayed within the disabled item’s link(s).

Remarks

An item is disabled if its BarItem.Enabled property is set to false. In this instance, you can use the LargeGlyphDisabled property to specify the large image to be displayed within the item’s link(s).

The disabled item’s large image can also be specified using the BarItem.LargeImageIndexDisabled property. You must assign the ImageList object to the BarManager’s BarManager.LargeImages property, and then use the BarItem.LargeImageIndexDisabled property to specify the desired image.

If both the LargeGlyphDisabled and LargeImageIndexDisabled properties are specified, then the disabled item’s links display the image specified by the LargeGlyphDisabled property.

Note

See the BarItem.LargeImageIndex topic, to learn which bar elements support large images.

See Also