Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/ICssRect.cs @ 12899

Last change on this file since 12899 was 12762, checked in by aballeit, 9 years ago

#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)

File size: 1004 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 Rect interface is used to represent any rect value. This
10  /// interface reflects the values in the underlying style
11  /// property. Hence, modifications made to the CSSPrimitiveValue
12  /// objects modify the style property.
13  /// </summary>
14  public interface ICssRect
15  {
16    /// <summary>
17    /// This attribute is used for the left of the rect.
18    /// </summary>
19    ICssPrimitiveValue Left
20    {
21      get;
22    }
23 
24    /// <summary>
25    /// This attribute is used for the bottom of the rect.
26    /// </summary>
27    ICssPrimitiveValue Bottom
28    {
29      get;
30    }
31 
32    /// <summary>
33    /// This attribute is used for the right of the rect.
34    /// </summary>
35    ICssPrimitiveValue Right
36    {
37      get;
38    }
39 
40    /// <summary>
41    /// This attribute is used for the top of the rect.
42    /// </summary>
43    ICssPrimitiveValue Top
44    {
45      get;
46    }
47  }
48}
Note: See TracBrowser for help on using the repository browser.