Search Results for

    Show / Hide Table of Contents

    Enum SvgShapeRendering

    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.

    Namespace: Svg
    Assembly: Svg.dll
    Syntax
    [TypeConverter(typeof(SvgShapeRenderingConverter))]
    public enum SvgShapeRendering
    Remarks

    Default is Auto.

    Fields

    Name Description
    Auto

    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

    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

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

    Inherit

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

    OptimizeSpeed

    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.

    • Improve this Doc
    • View Source
    In This Article
    Back to top Generated by DocFX