Skip to main content

TdxCustomRibbon.ColorSchemeName Property

Specifies the Ribbon skin by its name.

Declaration

property ColorSchemeName: string read; write;

Property Value

Type
string

Remarks

Use the ColorSchemeName property to specify one of the following built-in Ribbon skins by name:

Ribbon Style

Skin Name

Skin Class Name

Office 2019

Colorful

TdxColorfulRibbon2019Skin

White

TdxWhiteRibbon2019Skin

DarkGray

TdxDarkGrayRibbon2019Skin

Black

TdxBlackRibbon2019Skin

Office 2016

Colorful

TdxColorfulRibbon2016Skin

White

TdxWhiteRibbon2016Skin

LightGray

TdxLightGrayRibbon2016Skin

MediumGray

TdxMediumGrayRibbon2016Skin

DarkGray

TdxDarkGrayRibbon2016Skin

Office 2016 Tablet

Colorful

TdxColorfulRibbon2016TabletSkin

Office 2013

White

TdxWhiteRibbon2013Skin

LightGray

TdxLightGrayRibbon2013Skin

DarkGray

TdxDarkGrayRibbon2013Skin

Office 2010

Black

TdxBlackRibbon2010Skin

Blue

TdxBlueRibbon2010Skin

Silver

TdxSilverRibbon2010Skin

Office 2007

Black

TdxBlackRibbonSkin

Blue

TdxBlueRibbonSkin

Silver

TdxSilverRibbonSkin

If skins from the ExpressSkins Library are used in an application, these skins can also be applied to the Ribbon. To learn more, refer to the How to Apply Skins in the Application topic in the ExpressSkins Library documentation.

The following example demonstrates how to apply the Black built-in skin to the Ribbon control:

// ...
Ribbon.ColorSchemeName := 'Black';
See Also