Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/ICssImportRule.cs @ 13067

Last change on this file since 13067 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 1.1 KB
Line 
1using System;
2
3namespace SharpVectors.Dom.Css
4{
5  /// <summary>
6  /// The CSSImportRule interface represents a @import rule within
7  /// a CSS style sheet. The @import rule is used to import style
8  /// rules from other style sheets.
9  /// </summary>
10  /// <developer>niklas@protocol7.com</developer>
11  /// <completed>80</completed> 
12  public interface ICssImportRule : ICssRule
13  {
14    /// <summary>
15    /// The style sheet referred to by this rule, if it has been loaded. The value of this attribute is null if the style sheet has not yet been loaded or if it will not be loaded (e.g. if the style sheet is for a media type not supported by the user agent).
16    /// </summary>
17    SharpVectors.Dom.Css.ICssStyleSheet StyleSheet
18    {
19      get;
20    }
21 
22    /// <summary>
23    /// A list of media types for which this style sheet may be used.
24    /// </summary>
25    SharpVectors.Dom.Stylesheets.IMediaList Media
26    {
27      get;
28    }
29 
30    /// <summary>
31    /// The location of the style sheet to be imported. The attribute will not contain the "url(...)" specifier around the URI.
32    /// </summary>
33    string Href
34    {
35      get;
36    }
37  }
38}
Note: See TracBrowser for help on using the repository browser.