Table of Contents

Interface ISvgElement

Namespace
SharpVectors.Dom.Svg
Assembly
SharpVectors.Core.dll

All of the Svg DOM interfaces that correspond directly to elements in the Svg language (e.g., the SvgPathElement interface corresponds directly to the 'path' element in the language) are derivative from base class SvgElement.

public interface ISvgElement : IElement, IXmlElement, INode, IXmlNode
Inherited Members

Properties

Id

The value of the id attribute on the given element. Inheriting class should throw an exception when trying to update a read only element

IsRenderable

Gets a value indicating whether this SVG element is renderable.

OwnerSvgElement

The nearest ancestor 'svg' element. Null if the given element is the outermost 'svg' element.

RenderingHint

Gets a value providing a hint on the rendering defined by this element.

ViewportElement

The element which established the current viewport. Often, the nearest ancestor 'svg' element. Null if the given element is the outermost 'svg' element.