Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCss/Css/CssStyleSheetType.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: 868 bytes
Line 
1using System;
2
3namespace SharpVectors.Dom.Css
4{
5  /// <summary>
6  /// The different types of CssStyleSheets
7  /// </summary>
8  /// <developer>niklas@protocol7.com</developer>
9  /// <completed>100</completed>
10  public enum CssStyleSheetType {
11    /// <summary>
12    /// The stylesheet is a user agent stylesheet
13    /// </summary>
14    UserAgent,
15    /// <summary>
16    /// The stylesheet is a author stylesheet
17    /// </summary>
18    Author,
19    /// <summary>
20    /// The stylesheet is a user stylesheet
21    /// </summary>
22    User,
23    /// <summary>
24    /// The styles comes from a inline style attribute
25    /// </summary>
26    Inline,
27    NonCssPresentationalHints,
28    /// <summary>
29    /// Used internally for collection of styles for an element
30    /// </summary>
31    Collector,
32    /// <summary>
33    /// Used internally for unknown properties
34    /// </summary>
35    Unknown
36  };
37}
Note: See TracBrowser for help on using the repository browser.