CraftSynth.ImageEditor – Rev 1
?pathlinks?
#region Using directives
using System.Drawing;
#endregion
namespace CraftSynth.ImageEditor
{
/// <summary>
/// Helper class used to show properties
/// for one or more graphic objects
/// </summary>
internal class GraphicsProperties
{
private Color? color;
private int? penWidth;
public GraphicsProperties()
{
color = null;
penWidth = null;
}
public Color? Color
{
get { return color; }
set { color = value; }
}
public int? PenWidth
{
get { return penWidth; }
set { penWidth = value; }
}
}
}
Generated by GNU Enscript 1.6.5.90.