Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Shapes/ISvgLineElement.cs @ 12762

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

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

File size: 593 bytes
Line 
1using SharpVectors.Dom.Events;
2
3namespace SharpVectors.Dom.Svg
4{
5  /// <summary>
6  /// The SvgLineElement interface corresponds to the 'line' element.
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>100</completed>
10
11  public interface ISvgLineElement:
12        ISvgElement,
13        ISvgTests,
14        ISvgLangSpace,
15        ISvgExternalResourcesRequired,
16        ISvgStylable,
17        ISvgTransformable,
18        IEventTarget
19  {
20    ISvgAnimatedLength X1{get;}
21
22    ISvgAnimatedLength Y1{get;}
23
24    ISvgAnimatedLength X2{get;}
25   
26    ISvgAnimatedLength Y2{get;}
27
28  }
29
30}
Note: See TracBrowser for help on using the repository browser.