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

ITileContainerDefaultProperties.ItemImageAlignment Property

Gets or sets the way Tiles’ glyphs are aligned within the current TileContainer.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v19.2.dll

Declaration

TileItemContentAlignment? ItemImageAlignment { get; set; }

Property Value

Type Description
Nullable<TileItemContentAlignment>

A TileItemContentAlignment enumerator value that specifies the way Tiles’ glyphs are aligned 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

The ItemImageAlignment property affects all images assigned to the TileItemElement.Image properties of the elements stored within the BaseTile.Elements collections for all the current TileContainer‘s Tiles. You can also specify a stretch mode common to all Tiles within a container via the ITileContainerDefaultProperties.ItemImageScaleMode property.

See Also