Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/ICssColor.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: 864 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>100</completed>
3
4using System;
5
6namespace SharpVectors.Dom.Css
7{
8  /// <summary>
9  /// The RGBColor interface is used to represent any RGB color
10  /// value. This interface reflects the values in the underlying
11  /// style property. Hence, modifications made to the
12  /// CSSPrimitiveValue objects modify the style property.
13  /// </summary>
14  public interface ICssColor
15  {
16    /// <summary>
17    /// This attribute is used for the red value of the RGB color
18    /// </summary>
19    ICssPrimitiveValue Red {get;}
20
21    /// <summary>
22    /// This attribute is used for the green value of the RGB color.
23    /// </summary>
24    ICssPrimitiveValue Green {get;}
25
26    /// <summary>
27    /// This attribute is used for the blue value of the RGB color
28    /// </summary>
29    ICssPrimitiveValue Blue {get;}
30  }
31}
Note: See TracBrowser for help on using the repository browser.