Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Coordinates/ISvgPreserveAspectRatio.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: 690 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>100</completed>
3
4namespace SharpVectors.Dom.Svg
5{
6  /// <summary>
7  /// The SvgPreserveAspectRatio interface corresponds to the preserveAspectRatio attribute, which is available for some of Svg's elements.
8  /// </summary>
9  public interface ISvgPreserveAspectRatio
10  {
11    /// <summary>
12    /// The type of the alignment value as specified by one of the constants specified above.
13    /// </summary>
14    SvgPreserveAspectRatioType Align{get;set;}
15
16    /// <summary>
17    /// The type of the meet-or-slice value as specified by one of the constants specified above.
18    /// </summary>
19    SvgMeetOrSlice MeetOrSlice{get;set;}
20  }
21}
Note: See TracBrowser for help on using the repository browser.