Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/SvgTextPathSpacing.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: 802 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Svg
4{
5    /// <summary>
6    /// Indicates how the user agent should determine the spacing between glyphs
7    /// that are to be rendered along a path.
8    /// </summary>
9    public enum SvgTextPathSpacing
10    {
11        /// <summary>
12        /// A value of exact indicates that the glyphs should be rendered exactly
13        /// according to the spacing rules as specified in "Text on a path layout rules".
14        /// </summary>
15        Exact = 0,
16
17        /// <summary>
18        /// A value of auto indicates that the user agent should use text-on-a-path
19        /// layout algorithms to adjust the spacing between glyphs in order to achieve
20        /// visually appealing results.
21        /// </summary>
22        Auto = 1
23    }
24}
Note: See TracBrowser for help on using the repository browser.