Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Css/IElementCssInlineStyle.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: 911 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>100</completed>
3
4using System;
5
6namespace SharpVectors.Dom.Css
7{
8  /// <summary>
9  /// Inline style information attached to elements is exposed
10  /// through the style attribute.
11  /// </summary>
12    /// <remarks>
13    /// This represents the contents of the STYLE attribute for HTML elements
14    /// (or elements in other schemas or DTDs which use the STYLE attribute in the same
15  /// way). The expectation is that an instance of the
16  /// ElementCSSInlineStyle interface can be obtained by using
17  /// binding-specific casting methods on an instance of the
18  /// Element interface when the element supports inline CSS
19  /// style informations.
20    /// </remarks>
21  public interface IElementCssInlineStyle
22  {
23    /// <summary>
24    /// The style attribute
25    /// </summary>
26    ICssStyleDeclaration Style
27    {
28      get;
29    }
30  }
31}
Note: See TracBrowser for help on using the repository browser.