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

AlertButton.ImageDown Property

Gets or sets an image displayed when the current button functions as a check button and it’s in the pressed state.

Namespace: DevExpress.XtraBars.Alerter

Assembly: DevExpress.XtraEditors.v19.1.dll

Declaration

[Browsable(false)]
[DefaultValue(null)]
[DXCategory("Appearance")]
public Image ImageDown { get; set; }

Property Value

Type Default Description
Image *null*

A Image object that specifies the image representing the button’s pressed state.

Remarks

You can make a button function as a check button, having two states, by setting the AlertButton.Style property to AlertButtonStyle.CheckButton.

In the normal state, a check button displays the image specified by the AlertButton.Image or AlertButton.ImageIndex property. If both properties have been specified, the AlertButton.Image property is in effect, and the AlertButton.ImageIndex property is ignored.

For a check button, it’s possible to assign a different image to represent the button’s pressed state. To do this, use the ImageDown or AlertButton.ImageDownIndex property. If both properties have been specified, the AlertButton.ImageDown property is in effect, and the AlertButton.ImageDownIndex property is ignored. If none of these properties have been specified, the button in the pressed state will display the image specified by the AlertButton.Image or AlertButton.ImageIndex property.

See Also