Mercurial > pub > ImplabNet
annotate Implab.Diagnostics.Interactive/TextStyle.cs @ 245:b904e0a3ba72 v3
working on promises
| author | cin | 
|---|---|
| date | Fri, 26 Jan 2018 04:13:34 +0300 | 
| 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 } | 
