Skip to main content

CheckContextButton.CheckedGlyph Property

Gets or sets the glyph displayed by the current button in the checked state when it is not hovered over with the mouse pointer.

Namespace: DevExpress.Utils

Assembly: DevExpress.Utils.v23.2.dll

NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

Declaration

[Browsable(false)]
[DefaultValue(null)]
[DXCategory("Appearance")]
[EditorBrowsable(EditorBrowsableState.Never)]
public Image CheckedGlyph { get; set; }

Property Value

Type Default Description
Image null

An Image object that specifies the glyph displayed by the current button.

Remarks

When the current button is checked (see CheckContextButton.Checked), the CheckedGlyph and CheckContextButton.HoverCheckedGlyph properties allow you to specify glyphs to be displayed by the current button in the normal and hovered states, respectively.

The ContextItem.Glyph and ContextItem.HoverGlyph properties specify glyphs for the current button in the normal and hovered states, respectively, when the button is unchecked.

The CheckedGlyph property is equivalent to the ImageOptions.CheckedImage property (see CheckContextButton.ImageOptions).

See Also