Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorRuntime/SvgObjectType.cs @ 13788

Last change on this file since 13788 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 456 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6using System.Windows;
7
8namespace SharpVectors.Runtime
9{
10    public enum SvgObjectType
11    {
12        None     = 0,
13        Link     = 1,
14        Text     = 2,
15        Circle   = 3,
16        Ellipse  = 4,
17        Rect     = 5,
18        Polyline = 6,
19        Polygon  = 7,
20        Marker   = 8,
21        Image    = 9,
22        Group    = 10
23    }
24}
Note: See TracBrowser for help on using the repository browser.