Skip to main content

TdxSVGRenderQualityValues Enum

Enumerates SVG render quality levels.

Declaration

TdxSVGRenderQualityValues = (
    srqDefault,
    srqLow,
    srqMedium,
    srqHigh
);

Members

Name Description Example
srqDefault

The dxSVGRenderQuality global variable determines the active SVG render quality level.

Medium Quality Example

srqLow

“Low Quality” mode offers maximum performance at the cost of minor aliasing artifacts noticeable on some SVG images if the final (upscaled) image size is 256 by 256 pixels or higher (that is, exceeds a typical glyph‘s pixel dimensions (32 by 32) at the highest target monitor DPI (160 by 160)).

Low Quality Example

srqMedium

“Medium Quality” mode sets the optimum quality-to-performance ratio for most of the SVG images designed as scalable UI item glyphs (which includes all SVG images from the DevExpress Icon Library).

Medium Quality Example

srqHigh

“High Quality” mode corresponds to the only render quality level available in v18.2 and earlier. This mode offers maximum quality at the cost of slower render operations and higher memory consumption due to the largest render buffer size.

High Quality Example

Remarks

The TdxSVGRenderQuality type references the TdxSVGRenderQualityValues type.

See Also