Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/CssValueType.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.0 KB
Line 
1namespace SharpVectors.Dom.Css
2{
3/// <summary>
4///      The CssValueType Enum Class contains the possible Css Value
5///      Types.  This is an extension to the CSS spec.  The spec has
6///      a list of constants defined within the ICssValue Interface
7/// </summary>
8/// <developer>niklas@protocol7.com</developer>
9/// <completed>100</completed>
10  public enum CssValueType
11  {
12    /// <summary>
13    /// The value is inherited and the cssText contains "inherit".
14    /// </summary>
15    Inherit,
16    /// <summary>
17    /// The value is a primitive value and an instance of the CSSPrimitiveValue interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
18    /// </summary>
19    PrimitiveValue,
20    /// <summary>
21    /// The value is a CSSValue list and an instance of the CSSValueList interface can be obtained by using binding-specific casting methods on this instance of the CSSValue interface.
22    /// </summary>
23    ValueList,
24    /// <summary>
25    /// The value is a custom value.
26    /// </summary>
27    Custom
28  }
29}
Note: See TracBrowser for help on using the repository browser.