Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/ClippingMaskingCompositing/ISvgMaskElement.cs @ 13825

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

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

File size: 544 bytes
Line 
1// <developer>tabascopete78@yahoo.com</developer>
2// <completed>10</completed>
3
4namespace SharpVectors.Dom.Svg
5{
6  /// <summary>
7  /// Used by SvgMaskElement.
8  /// </summary>
9  public interface ISvgMaskElement : ISvgElement, ISvgTests, ISvgLangSpace,
10    ISvgExternalResourcesRequired, ISvgStylable
11  {
12    ISvgAnimatedEnumeration MaskUnits {get;}
13    ISvgAnimatedEnumeration MaskContentUnits {get;}
14    ISvgAnimatedLength X {get;}
15    ISvgAnimatedLength Y {get;}
16    ISvgAnimatedLength Width {get;}
17    ISvgAnimatedLength Height {get;} 
18  }
19}
Note: See TracBrowser for help on using the repository browser.