Skip to main content
Tab

BackwardCompatibilitySettings.UseSvgTagToRenderSvgIcons Property

Specifies whether the Spreadsheet and Rich Text Editor controls use the SVG tag to render ribbon icons.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue(true)]
public bool UseSvgTagToRenderSvgIcons { get; set; }

Property Value

Type Default Description
Boolean true

true, to render ribbon icons using the SVG tag; otherwise, false.

Property Paths

You can access this nested property as listed below:

Object Type Path to UseSvgTagToRenderSvgIcons
ASPxWebControl
.BackwardCompatibility .UseSvgTagToRenderSvgIcons

Remarks

The following example illustrates how to disable the SVG tag usage for ribbon icon rendering.

Global.asax:

void Application_Start(object sender, EventArgs e) {
    ASPxWebControl.BackwardCompatibility.UseSvgTagToRenderSvgIcons = false;
}
See Also