Last change
on this file since 13757 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
680 bytes
|
Line | |
---|
1 | // <developer>niklas@protocol7.com</developer>
|
---|
2 | // <completed>0</completed>
|
---|
3 |
|
---|
4 | using System;
|
---|
5 |
|
---|
6 | namespace SharpVectors.Dom.Svg
|
---|
7 | {
|
---|
8 | /// <summary>
|
---|
9 | /// For each 'use' element, the Svg DOM maintains a shadow tree (the "instance tree") of objects of type SvgElementInstance
|
---|
10 | /// </summary>
|
---|
11 | public interface ISvgElementInstance
|
---|
12 | {
|
---|
13 | ISvgElement CorrespondingElement{get;}
|
---|
14 | ISvgUseElement CorrespondingUseElement{get;}
|
---|
15 | ISvgElementInstance ParentNode{get;}
|
---|
16 | ISvgElementInstanceList ChildNodes{get;}
|
---|
17 | ISvgElementInstance FirstChild{get;}
|
---|
18 | ISvgElementInstance LastChild{get;}
|
---|
19 | ISvgElementInstance PreviousSibling{get;}
|
---|
20 | ISvgElementInstance NextSibling{get;}
|
---|
21 | }
|
---|
22 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.