Back to Devexpress

BaseGallery.ItemImageLayout Property

windowsforms-devexpress-dot-xtrabars-dot-ribbon-dot-gallery-dot-basegallery-023db0a7.md

latest3.8 KB
Original Source

BaseGallery.ItemImageLayout Property

Gets or sets how a gallery item’s image is displayed within the item’s image area.

Namespace : DevExpress.XtraBars.Ribbon.Gallery

Assembly : DevExpress.XtraBars.v25.2.dll

NuGet Package : DevExpress.Win.Navigation

Declaration

csharp
[DefaultValue(ImageLayoutMode.MiddleCenter)]
[DXCategory("Appearance")]
public ImageLayoutMode ItemImageLayout { get; set; }
vb
<DXCategory("Appearance")>
<DefaultValue(ImageLayoutMode.MiddleCenter)>
Public Property ItemImageLayout As ImageLayoutMode

Property Value

TypeDefaultDescription
ImageLayoutModeMiddleCenter

An ImageLayoutMode value that specifies how a gallery item’s image is arranged.

|

Available values:

Show 16 items

NameDescription
TopLeft

An image is vertically aligned at the top, and horizontally aligned on the left.

| | TopCenter |

An image is vertically aligned at the top, and horizontally aligned at the center.

| | TopRight |

An image is vertically aligned at the top, and horizontally aligned on the right.

| | MiddleLeft |

An image is vertically aligned at the center, and horizontally aligned on the left.

| | MiddleCenter |

An image is horizontally and vertically aligned at the center.

| | MiddleRight |

An image is vertically aligned at the center, and horizontally aligned on the right.

| | BottomLeft |

An image is vertically aligned at the bottom, and horizontally aligned on the left.

| | BottomCenter |

An image is vertically aligned at the bottom, and horizontally aligned at the center.

| | BottomRight |

An image is vertically aligned at the bottom, and horizontally aligned on the right.

| | Stretch |

An image is stretched to fill the available client area.

| | ZoomInside |

Zooms an image proportionally so that it’s displayed within the client area in its entirety.

| | ZoomOutside |

Zooms an image proportionally, making its smaller side (width or height) to be displayed entirely. The image is centered, so the larger side (height or width) will not be displayed in its entirety.

| | StretchHorizontal |

An image is stretched horizontally.

| | StretchVertical |

An image is stretched vertically.

| | Default |

The default layout.

| | Squeeze |

An image is displayed as is, if its actual size is smaller than the size of the container. If the image size is larger than the container’s size, the image is shrunk proportionally to fit the container’s bounds.

|

Remarks

An item’s image can be zoomed, stretched or aligned to various edges of the item’s image area. Use the ItemImageLayout property to customize the image layout setting.

To learn how to specify a gallery item image’s area size, see BaseGallery.ImageSize.

See Also

ImageSize

FixedImageSize

UseMaxImageSize

BaseGallery Class

BaseGallery Members

DevExpress.XtraBars.Ribbon.Gallery Namespace