Table of Contents

Interface IBranchSvgNodeRenderer

Namespace
iText.Svg.Renderers
Assembly
itext.svg.dll

Interface that defines branches in the NodeRenderer structure.

public interface IBranchSvgNodeRenderer : ISvgNodeRenderer
Inherited Members

Remarks

Interface that defines branches in the NodeRenderer structure. Differs from a leaf renderer in that a branch has children and as such methods that can add or retrieve those children.

Methods

AddChild(ISvgNodeRenderer)

Adds a renderer as the last element of the list of children.

void AddChild(ISvgNodeRenderer child)

Parameters

child ISvgNodeRenderer

any renderer

GetChildren()

Gets all child renderers of this object.

IList<ISvgNodeRenderer> GetChildren()

Returns

IList<ISvgNodeRenderer>

the list of child renderers (in the order that they were added)