Mercurial > pub > ImplabNet
annotate Implab.Diagnostics.Interactive/TextStyle.cs @ 63:908b4f340c69
fixed: JSONXmlReader.Value returns invalid textual representation for numbers.
author | cin |
---|---|
date | Mon, 23 Jun 2014 17:34:40 +0400 |
parents | d10034588e38 |
children |
rev | line source |
---|---|
45 | 1 using System; |
2 using System.Collections.Generic; | |
3 using System.Drawing; | |
4 using System.Linq; | |
5 using System.Text; | |
6 using System.Threading.Tasks; | |
7 | |
8 namespace Implab.Diagnostics.Interactive { | |
9 class TextStyle { | |
10 public Color TextColor { | |
11 get; | |
12 set; | |
13 } | |
14 | |
15 public FontStyle FontStyle { | |
16 get; | |
17 set; | |
18 } | |
19 | |
20 public int PaddingLeft { | |
21 get; | |
22 set; | |
23 } | |
24 } | |
25 } |