Skip to main content

IDocumentGroupDefaultProperties.PageImagePosition Property

Gets or sets the alignment of images displayed in document tabs that belong to the current group.

Namespace: DevExpress.XtraBars.Docking2010.Views.Tabbed

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

TabPageImagePosition? PageImagePosition { get; set; }

Property Value

Type Description
Nullable<TabPageImagePosition>

The TabPageImagePosition value that is the alignment of images displayed in document tabs that belong to the current group.

Available values:

Name Description
Near

Images are positioned on the left side of page headers.

Far

Images are positioned on the right side of page headers.

Center

Images are centered within page headers and the header’s caption is hidden.

None

The images are not displayed within page headers.

Remarks

Use a View’s IDocumentGroupProperties.PageImagePosition property to specify the default alignment of images displayed in document tabs within all groups. The PageImagePosition property allows you to override the IDocumentGroupProperties.PageImagePosition setting for documents in the current document group. To override the default setting, set the PageImagePosition property to any TabPageImagePosition value except null.

See Also