Skip to main content

RibbonPage.Image Property

Gets or sets an image displayed within the Ribbon page’s header.

Namespace: DevExpress.XtraBars.Ribbon

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

[Browsable(false)]
[DefaultValue(null)]
[EditorBrowsable(EditorBrowsableState.Never)]
public virtual Image Image { get; set; }

Property Value

Type Default Description
Image null

A Image object that represents the image displayed within the page’s header.

Remarks

A Ribbon page can display an image within its header (see the image below):

RibbonPageImage

This image can be specified using the Image or RibbonPage.ImageIndex property. If both properties are specified, the page header displays the image specified by the Image property.

You can also specify the alignment of the image and the distance between the image and text via the RibbonPage.ImageAlign and RibbonPage.ImageToTextIndent properties, respectively.

See Also