Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/Paths/ISvgPathSegList.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: 614 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>90</completed>
3
4using System;
5
6namespace SharpVectors.Dom.Svg
7{
8  /// <summary>
9  /// This interface defines a list of SvgPathSeg objects.
10  /// </summary>
11  public interface ISvgPathSegList
12  {
13    int NumberOfItems { get; }
14    void Clear();
15    ISvgPathSeg Initialize(ISvgPathSeg newItem);
16    ISvgPathSeg GetItem(int index);
17    ISvgPathSeg InsertItemBefore(ISvgPathSeg newItem, int index);
18    ISvgPathSeg ReplaceItem(ISvgPathSeg newItem, int index);
19    ISvgPathSeg RemoveItem(int index);
20    ISvgPathSeg AppendItem(ISvgPathSeg newItem);
21  }
22}
23
Note: See TracBrowser for help on using the repository browser.