Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/DocumentStructure/ISvgUseElement.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: 710 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>0</completed>
3
4using SharpVectors.Dom.Events;
5
6namespace SharpVectors.Dom.Svg
7{
8  /// <summary>
9  /// The SvgUseElement interface corresponds to the 'use' element.
10  /// </summary>
11  public interface ISvgUseElement : ISvgElement, ISvgUriReference, ISvgTests, ISvgStylable,
12    ISvgLangSpace, ISvgExternalResourcesRequired, ISvgTransformable, IEventTarget
13  {                                     
14    ISvgAnimatedLength X { get; }
15    ISvgAnimatedLength Y { get; }
16    ISvgAnimatedLength Width { get; }
17    ISvgAnimatedLength Height { get; }
18    ISvgElementInstance InstanceRoot { get; }
19    ISvgElementInstance AnimatedInstanceRoot { get; }
20  }
21}
Note: See TracBrowser for help on using the repository browser.