Free cookie consent management tool by TermsFeed Policy Generator

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