Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Stylesheets/ILinkStyle.cs @ 13346

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

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

File size: 691 bytes
Line 
1// <developer>niklas@protocol7.com</developer>
2// <completed>100</completed>
3 
4using System;
5
6namespace SharpVectors.Dom.Stylesheets
7{
8  /// <summary>
9  /// The LinkStyle interface provides a mechanism by which a
10  /// style sheet can be retrieved from the node responsible for
11  /// linking it into a document. An instance of the LinkStyle
12  /// interface can be obtained using binding-specific casting
13  /// methods on an instance of a linking node (HTMLLinkElement,
14  /// HTMLStyleElement or ProcessingInstruction in DOM Level 2).
15  /// </summary>
16  public interface ILinkStyle
17  {
18    /// <summary>
19    /// The style sheet
20    /// </summary>
21    IStyleSheet Sheet {get;}
22  }
23}
Note: See TracBrowser for help on using the repository browser.