Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/ICssStyleRule.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: 949 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Css
4{
5  /// <summary>
6  /// The CSSStyleRule interface represents a single rule set
7  /// in a CSS style sheet.
8  /// </summary>
9  /// <developer>niklas@protocol7.com</developer>
10  /// <completed>90</completed>
11  public interface ICssStyleRule : ICssRule
12  {
13    /// <summary>
14    /// The textual representation of the selector for the rule set. The implementation may have stripped out insignificant whitespace while parsing the selector.
15    /// </summary>
16    /// <exception cref="DomException">SYNTAX_ERR: Raised if the specified CSS string value has a syntax error and is unparsable.</exception>
17    /// <exception cref="DomException">NO_MODIFICATION_ALLOWED_ERR: Raised if this rule is readonly.</exception>
18    string SelectorText
19    {
20      get;
21      set;
22    }
23
24    /// <summary>
25    /// The declaration-block of this rule set.
26    /// </summary>
27    ICssStyleDeclaration Style
28    {
29      get;
30    }
31  }
32}
Note: See TracBrowser for help on using the repository browser.