Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/IDomImplementationCss.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: 1.3 KB
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>0</completed>
3
4using System;
5using System.Xml;
6
7namespace SharpVectors.Dom.Css
8{
9  /// <summary>
10  /// This interface allows the DOM user to create a CSSStyleSheet
11  /// outside the context of a document. There is no way to
12  /// associate the new CSSStyleSheet with a document in DOM
13  /// Level 2.
14  /// </summary>
15  /// <remarks>This interface should inherit from IDomImplementation
16  /// but System.Xml does not have this interface, just a class.
17  /// You can not inherit from a class in an interface.
18  /// </remarks> 
19  public interface IDomImplementationCss
20  {
21    /// <summary>
22    /// Creates a new CSSStyleSheet.
23    /// </summary>
24    /// <param name="title">The advisory title. See also the Style Sheet Interfaces section.</param>
25    /// <param name="media">The comma-separated list of media associated with the new style sheet. See also the Style Sheet Interfaces section.</param>
26    /// <returns>A new CSS style sheet.</returns>
27    ICssStyleSheet CreateCssStyleSheet(string title, string media);
28
29    //bool HasFeature(string feature,string version);
30    //DocumentType CreateDocumentType(string qualifiedName, string publicId, string systemId);
31    //Document CreateDocument(string namespaceUri, string qualifiedName, DocumentType doctype);
32  }
33}
Note: See TracBrowser for help on using the repository browser.