[Category("Parameters")]
[Description("Range Color")]
public Color RangeColor
{
get { return rangecolor; }
set { rangecolor = value; }
}
rangecolor is returned as nothing when I save/load a template.
I AM NOT using [XmlIgnore()] so the value should be saved and loaded but it always comes back without a value. All other custom property values are saved correctly.

Comment