Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Painting/SvgMarkerUnit.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: 545 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5  public enum SvgMarkerUnit
6  {
7    /// <summary>
8    /// The marker unit type is not one of predefined types. It is invalid to attempt to define a new value of this type or to attempt to switch an existing value to this type.
9    /// </summary>
10    Unknown,
11
12    /// <summary>
13    /// The value of attribute markerUnits is 'userSpaceOnUse'.
14    /// </summary>
15    UserSpaceOnUse,
16
17    /// <summary>
18    /// The value of attribute markerUnits is 'strokeWidth'.
19    /// </summary>
20    StrokeWidth
21  }
22}
Note: See TracBrowser for help on using the repository browser.