Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/SharpVectorCore/Svg/BasicTypes/ISvgLangSpace.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: 430 bytes
Line 
1namespace SharpVectors.Dom.Svg
2{
3  /// <summary>
4  /// Interface SvgLangSpace defines an interface which applies to all elements which have attributes xml:lang and xml:space.
5  /// </summary>
6  /// <developer>niklas@protocol7.com</developer>
7  /// <developer>niklas@protocol7.com</developer>
8  /// <completed>100</completed>
9  public interface ISvgLangSpace
10  {
11    string XmlLang{get;set;}
12    string XmlSpace{get;set;}
13  }
14}
Note: See TracBrowser for help on using the repository browser.