Represents a node (element) in an SVG document.
SvgNodeHandle is obtained with the following:
The SvgNodeHandle has the following members for updating the XML elements of an SVG document:
Bounds: The bounding rectangle of the element. This value is in SVG coordinates that matches SvgDocument.Bounds.
GetElementValue and SetElementValue: Gets or sets the XML value as a raw string.
GetAttributeValue and SetAttributeValue: Gets or sets the value of any attribute in element as a raw string. RemoveElementAttribute: To remove the specified attribute from the element.
After modifying the values of an SVG document using SvgNodeHandle, it may be necessary to re-calculate the document flat, render optimization and bounding rectangles (refer to SVG Size, Bounds and Flat more information). Therefore, it is best to call SvgDocument.BeginUpdate before making any updates to the document and call SvgDocument.EndUpdate when done. The engine will determine during SvgDocument.EndUpdate whether any internal state values need to be re-calculated and updated as necessary.
For an example, refer to SvgDocument.EnumerateElements.