Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/ISvgLengthList.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: 695 bytes
Line 
1namespace SharpVectors.Dom.Svg
2{
3  /// <summary>
4  /// This interface defines a list of SvgLength objects.
5  /// </summary>
6  /// <developer>niklas@protocol7.com</developer>
7  /// <completed>20</completed>
8  public interface ISvgLengthList
9  {
10    uint NumberOfItems{get;}
11    void Clear();
12    ISvgLength Initialize(ISvgLength newItem);
13    ISvgLength GetItem(uint index);
14    ISvgLength InsertItemBefore(ISvgLength newItem, uint index);
15    ISvgLength ReplaceItem(ISvgLength newItem, uint index);
16    ISvgLength RemoveItem(uint index);
17    ISvgLength AppendItem(ISvgLength newItem);
18                       
19        // not part of the SVG spec
20        void FromString(string listString);
21  }
22}
Note: See TracBrowser for help on using the repository browser.