Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/ISvgFitToViewBox.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: 439 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>80</completed>
3
4namespace SharpVectors.Dom.Svg
5{
6  /// <summary>
7  /// Interface SvgFitToViewBox defines DOM attributes that apply to
8  /// elements which have XML attributes viewBox and
9  /// preserveAspectRatio.
10  /// </summary>
11  public interface ISvgFitToViewBox
12  {
13    ISvgAnimatedRect ViewBox{get;}
14    ISvgAnimatedPreserveAspectRatio PreserveAspectRatio{get;}
15  }
16}
Note: See TracBrowser for help on using the repository browser.