Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Stylesheets/IDocumentStyle.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: 946 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>100</completed>
3
4using System;
5
6namespace SharpVectors.Dom.Stylesheets
7{
8  /// <summary>
9  /// The DocumentStyle interface provides a mechanism by which
10  /// the style sheets embedded in a document can be retrieved.
11  /// The expectation is that an instance of the DocumentStyle
12  /// interface can be obtained by using binding-specific casting
13  /// methods on an instance of the Document interface.
14  /// </summary>
15  public interface IDocumentStyle
16  {
17    /// <summary>
18    /// A list containing all the style sheets explicitly linked into or embedded in a document. For HTML documents, this includes external style sheets, included via the HTML LINK element, and inline STYLE elements. In XML, this includes external style sheets, included via style sheet processing instructions (see [XML-StyleSheet]).
19    /// </summary>
20    IStyleSheetList StyleSheets { get; }
21  }
22}
Note: See TracBrowser for help on using the repository browser.