Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

ITileContainerDefaultProperties.ItemBackgroundImageAlignment Property

Gets or sets the background image position for all Tiles within the current TileContainer.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v24.2.dll

NuGet Package: DevExpress.Win.Navigation

#Declaration

TileItemContentAlignment? ItemBackgroundImageAlignment { get; set; }

#Property Value

Type Description
Nullable<TileItemContentAlignment>

A TileItemContentAlignment enumerator value that specifies the background image position for all Tiles within the current TileContainer.

Available values:

Show 11 items
Name Description
Default

Default content alignment.

TopLeft

Content appears vertically aligned on the top, and horizontally aligned on the left.

TopCenter

Content appears vertically aligned on the top, and horizontally aligned at the center.

TopRight

Content appears vertically aligned on the top, and horizontally aligned on the right.

MiddleLeft

Content appears vertically aligned at the center, and horizontally aligned on the left.

MiddleCenter

Content is horizontally and vertically aligned at the center.

MiddleRight

Content appears vertically aligned at the center, and horizontally aligned on the right.

BottomLeft

Content appears vertically aligned at the bottom, and horizontally aligned on the left.

BottomCenter

Content appears vertically aligned at the bottom, and horizontally aligned at the center.

BottomRight

Content appears vertically aligned at the bottom, and horizontally aligned on the right.

Manual

Indicates that manual text alignment, based on the TileItemElement.TextLocation coordinates, should be used.

#Remarks

A Tile’s background image is specified via the BaseTile.BackgroundImage property. The ItemBackgroundImageAlignment property specifies the alignment of background images common to all Tiles within the current Tile Container. Use the Properties.BackgroundImageAlignment property to override these default settings for individual Tiles.

Besides the alignment, you can also specify the background image’s stretch mode via the ITileContainerDefaultProperties.ItemBackgroundImageScaleMode property.

See Also