Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorModel/BasicTypes/SvgAnimatedPreserveAspectRatio.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: 977 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <developer>kevin@kevlindev.com</developer>
3// <completed>100</completed>
4
5using System;
6
7namespace SharpVectors.Dom.Svg
8{
9  /// <summary>
10  /// Summary description for SvgAnimatedPreserveAspectRatio.
11  /// </summary>
12    public sealed class SvgAnimatedPreserveAspectRatio : ISvgAnimatedPreserveAspectRatio
13  {
14    #region Private Fields
15    private SvgPreserveAspectRatio baseVal;
16    private SvgPreserveAspectRatio animVal;
17    #endregion
18
19    #region Constructor
20    public SvgAnimatedPreserveAspectRatio(string attr, SvgElement ownerElement)
21    {
22      baseVal = new SvgPreserveAspectRatio(attr, ownerElement);
23      animVal = baseVal;
24    }
25    #endregion
26
27        #region ISvgAnimatedPreserveAspectRatio Interface
28    public ISvgPreserveAspectRatio BaseVal
29    {
30      get
31      {
32        return baseVal;
33      }
34    }
35
36    public ISvgPreserveAspectRatio AnimVal
37    {
38      get
39      {
40        return animVal;
41      }
42    }
43    #endregion
44  }
45}
Note: See TracBrowser for help on using the repository browser.