Free cookie consent management tool by TermsFeed Policy Generator

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

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

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

File size: 1.2 KB
Line 
1using SharpVectors.Dom.Events;
2
3namespace SharpVectors.Dom.Svg
4{
5  /// <summary>
6  /// The SvgRectElement interface corresponds to the 'rect' element.
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>100</completed>
10  public interface ISvgRectElement :
11    ISvgElement,
12    ISvgTests,
13    ISvgLangSpace,
14    ISvgExternalResourcesRequired,
15    ISvgStylable,
16    ISvgTransformable,
17    IEventTarget
18     
19  {
20    /// <summary>
21    /// Corresponds to attribute x on the given 'rect' element.
22    /// </summary>
23    ISvgAnimatedLength X{get;}
24
25    /// <summary>
26    /// Corresponds to attribute y on the given 'rect' element.
27    /// </summary>
28    ISvgAnimatedLength Y{get;}
29
30    /// <summary>
31    /// Corresponds to attribute rx on the given 'rect' element.
32    /// </summary>
33    ISvgAnimatedLength Rx{get;}
34   
35    /// <summary>
36    /// Corresponds to attribute ry on the given 'rect' element.
37    /// </summary>
38    ISvgAnimatedLength Ry{get;}
39   
40    /// <summary>
41    /// Corresponds to attribute width on the given 'rect' element.
42    /// </summary>
43    ISvgAnimatedLength Width{get;}
44   
45    /// <summary>
46    /// Corresponds to attribute height on the given 'rect' element.
47    /// </summary>
48    ISvgAnimatedLength Height{get;}
49  }
50}
Note: See TracBrowser for help on using the repository browser.