Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/ICssValueList.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: 834 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Css
4{
5  /// <summary>
6  /// The CSSValueList interface provides the abstraction of an
7  /// ordered collection of CSS values.
8  /// </summary>
9  /// <developer>niklas@protocol7.com</developer>
10  /// <completed>0</completed> 
11
12  public interface ICssValueList : ICssValue
13  {
14    /// <summary>
15    /// The number of CSSValues in the list. The range of valid values of the indices is 0 to length-1 inclusive.
16    /// </summary>
17    ulong Length
18    {
19      get;
20    }
21
22    /// <summary>
23    /// Used to retrieve a CSSValue by ordinal index. The order in this collection represents the order of the values in the CSS style property. If index is greater than or equal to the number of values in the list, this returns null.
24    /// </summary>
25    ICssValue this[ulong index]
26    {
27      get;
28    }
29  }
30}
Note: See TracBrowser for help on using the repository browser.