Last change
on this file since 13401 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
487 bytes
|
Rev | Line | |
---|
[12762] | 1 | // <developer>niklas@protocol7.com</developer>
|
---|
| 2 | // <completed>100</completed>
|
---|
| 3 |
|
---|
| 4 | using System;
|
---|
| 5 |
|
---|
| 6 | namespace SharpVectors.Dom.Svg
|
---|
| 7 | {
|
---|
| 8 | /// <summary>
|
---|
| 9 | /// The SvgTSpanElement interface corresponds to the 'tspan' element.
|
---|
| 10 | /// </summary>
|
---|
| 11 | public sealed class SvgTSpanElement : SvgTextPositioningElement, ISvgTSpanElement
|
---|
| 12 | {
|
---|
| 13 | public SvgTSpanElement(string prefix, string localname, string ns, SvgDocument doc)
|
---|
| 14 | : base(prefix, localname, ns, doc)
|
---|
| 15 | {
|
---|
| 16 | }
|
---|
| 17 | }
|
---|
| 18 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.