CraftSynth.ImageEditor – Blame information for rev 1

Subversion Repositories:
Rev:
Rev Author Line No. Line
1 office 1 #region Using directives
2 using System.Drawing;
3 #endregion
4  
5 namespace CraftSynth.ImageEditor
6 {
7 /// <summary>
8 /// Helper class used to show properties
9 /// for one or more graphic objects
10 /// </summary>
11 internal class GraphicsProperties
12 {
13 private Color? color;
14 private int? penWidth;
15  
16 public GraphicsProperties()
17 {
18 color = null;
19 penWidth = null;
20 }
21  
22 public Color? Color
23 {
24 get { return color; }
25 set { color = value; }
26 }
27  
28 public int? PenWidth
29 {
30 get { return penWidth; }
31 set { penWidth = value; }
32 }
33 }
34 }