I have a situation when defining an input as type Color.
I have an input variable
Color iColor = Color.Green;
[Description("")]
[Category("Color 1")]
public Color IColor
{
get { return iColor; }
set { iColor = value; }
}
When I set the color initially, it works appropriately. If I save the workspace when things are working, close the workspace, then reopen the workspace, all of my colors default to Transparent.
Is this as expected?
Any ideas?
Thanks

Comment