Skip to main content

IBaseDocumentDefaultProperties.AllowGlyphSkinning Property

Gets or sets whether the current document’s icon should be painted with this document’s foreground color.

Namespace: DevExpress.XtraBars.Docking2010.Views

Assembly: DevExpress.XtraBars.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

DefaultBoolean AllowGlyphSkinning { get; set; }

Property Value

Type Description
DefaultBoolean

A DefaultBoolean enumerator value that specifies whether the current document’s icon should be painted with this document’s foreground color.

Available values:

Name Description Return Value
True

The value is true.

0

False

The value is false.

1

Default

The value is specified by a global option or a higher-level object.

2

Remarks

Documents within a DocumentManager can paint their BaseDocument.Images with 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 IBaseDocumentProperties.AllowGlyphSkinning property in the BaseView.DocumentProperties section for the entire View, or the 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