Table of Contents

Enum SvgShapeRendering

Namespace
Svg
Assembly
Svg.dll

The creator of SVG content might want to provide a hint about what tradeoffs to make as the browser renders 'path' element or basic shapes. The shape-rendering attribute provides these hints.

[TypeConverter(typeof(SvgShapeRenderingConverter))]
public enum SvgShapeRendering

Fields

Auto = 1

Indicates that the user agent shall make appropriate tradeoffs to balance speed, crisp edges and geometric precision, but with geometric precision given more importance than speed and crisp edges.

CrispEdges = 3

Indicates that the user agent shall attempt to emphasize the contrast between clean edges of artwork over rendering speed and geometric precision. To achieve crisp edges, the user agent might turn off anti-aliasing for all lines and curves or possibly just for straight lines which are close to vertical or horizontal. Also, the user agent might adjust line positions and line widths to align edges with device pixels.

GeometricPrecision = 4

Indicates that the user agent shall emphasize geometric precision over speed and crisp edges.

Inherit = 0

Indicates that the SVG shape rendering properties from the parent will be used.

OptimizeSpeed = 2

Indicates that the user agent shall emphasize rendering speed over geometric precision and crisp edges. This option will sometimes cause the user agent to turn off shape anti-aliasing.

Remarks

Default is Auto.