Skip to main content

ITileContainerDefaultProperties.Padding Property

Gets or sets the amount of space between the current TileContainer‘s border and its content.

Namespace: DevExpress.XtraBars.Docking2010.Views.WindowsUI

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

Padding? Padding { get; set; }

Property Value

Type Description
Nullable<Padding>

A Padding structure that is the amount of space between the current TileContainer‘s border and its content.

Remarks

The Padding property specifies the distance between the current TileContainer‘s outer border and its content - Tiles and Tile Groups. You can also specify the distance between neighboring Tiles and Groups via the ITileContainerDefaultProperties.IndentBetweenItems and ITileContainerDefaultProperties.IndentBetweenGroups properties respectively. To set margins for individual Tiles, use the BaseTile.Padding property instead.

The ITileControlProperties.Padding property accessed via the WindowsUIView.TileContainerProperties object specifies the global setting common to all TileContainers within the View and has a lower priority than the Padding property.

See Also