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

IBaseDocumentProperties.AllowGlyphSkinning Property

Gets or sets whether all Documents within the current View should have their icons painted in the Documents’ foreground colors.

Namespace: DevExpress.XtraBars.Docking2010.Views

Assembly: DevExpress.XtraBars.v19.1.dll

Declaration

bool AllowGlyphSkinning { get; set; }

Property Value

Type Description
Boolean

true, if all Documents within the current View should have their icons painted in the Documents’ foreground colors; otherwise, false.

Remarks

Documents within a DocumentManager can paint their BaseDocument.Images in the same color as their BaseDocument.Captions. This feature is called Glyph Skinning and allows you to build monochrome UIs for your applications. To enable or disable this feature, use the AllowGlyphSkinning property in the BaseView.DocumentProperties section for the entire View, or the IBaseDocumentDefaultProperties.AllowGlyphSkinning property for individual documents.

The figure below illustrates a DocumentManager with a TabbedView applied. The View contains two tabbed documents. The first document is painted using the Glyph Skinning feature.

DocumentManager - AllowGlyphSkinning

DocumentManager is not the only control that supports this feature. See the Glyph Skinning topic for the complete control list.

See Also