Skip to main content
A newer version of this page is available. .
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.v21.2.dll

NuGet Package: DevExpress.Web

Declaration

public bool UseSvgTagToRenderSvgIcons { get; set; }

Property Value

Type Description
Boolean

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