Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/ISvgViewSpec.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: 476 bytes
Line 
1namespace SharpVectors.Dom.Svg
2{
3  /// <summary>
4  /// The interface corresponds to an Svg View Specification.
5  /// </summary>
6  /// <developer></developer>
7  /// <completed>0</completed>
8  public interface ISvgViewSpec : ISvgZoomAndPan, ISvgFitToViewBox
9  {
10    ISvgTransformList Transform{get;}
11    ISvgElement ViewTarget{get;}
12    string ViewBoxString{get;}
13    string PreserveAspectRatioString{get;}
14    string TransformString{get;}
15    string ViewTargetString{get;}
16  }
17}
Note: See TracBrowser for help on using the repository browser.