Last change
on this file since 13825 was
12762,
checked in by aballeit, 9 years ago
|
#2283 GUI updates, Tree-chart, MCTS Version 2 (prune leaves)
|
File size:
664 bytes
|
Rev | Line | |
---|
[12762] | 1 | using System;
|
---|
| 2 | using System.Xml;
|
---|
| 3 |
|
---|
| 4 | namespace SharpVectors.Dom.Css
|
---|
| 5 | {
|
---|
| 6 | public class CssAbsValue : CssValue
|
---|
| 7 | {
|
---|
| 8 | private string _propertyName;
|
---|
| 9 | private CssValue _cssValue;
|
---|
| 10 | private XmlElement _element;
|
---|
| 11 |
|
---|
| 12 | public CssAbsValue(CssValue cssValue, string propertyName, XmlElement element)
|
---|
| 13 | : base()
|
---|
| 14 | {
|
---|
| 15 | _cssValue = cssValue;
|
---|
| 16 | _propertyName = propertyName;
|
---|
| 17 | _element = element;
|
---|
| 18 | }
|
---|
| 19 |
|
---|
| 20 | public override string CssText
|
---|
| 21 | {
|
---|
| 22 | get
|
---|
| 23 | {
|
---|
| 24 | return _cssValue.CssText;
|
---|
| 25 | }
|
---|
| 26 | }
|
---|
| 27 |
|
---|
| 28 | public override CssValueType CssValueType
|
---|
| 29 | {
|
---|
| 30 | get
|
---|
| 31 | {
|
---|
| 32 | return _cssValue.CssValueType;
|
---|
| 33 | }
|
---|
| 34 | }
|
---|
| 35 | }
|
---|
| 36 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.