Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Shapes/ISvgPolylineElement.cs @ 13847

Last change on this file since 13847 was 12762, checked in by aballeit, 10 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 481 bytes
Line 
1using SharpVectors.Dom.Events;
2
3namespace SharpVectors.Dom.Svg
4{
5  /// <summary>
6  /// The SvgPolylineElement interface corresponds to the 'polyline' element
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>100</completed>
10  public interface ISvgPolylineElement  :
11    ISvgElement,
12    ISvgTests,
13    ISvgLangSpace,
14    ISvgExternalResourcesRequired,
15    ISvgStylable,
16    ISvgTransformable,
17    ISvgAnimatedPoints,
18    IEventTarget
19  {
20
21  }
22}
Note: See TracBrowser for help on using the repository browser.