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.v24.1.dll
NuGet Package: DevExpress.Web
Declaration
Property Value
Type | Default | Description |
---|---|---|
Boolean | true |
|
Property Paths
You can access this nested property as listed below:
Object Type | Path to UseSvgTagToRenderSvgIcons |
---|---|
ASPxWebControl |
|
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