public property in designer is greyed out..

I created a class based on datagridviewColumn, and am trying to add a public property (which I can successfully add, and call in code during run time) but it is greyed out during design time..

How can I get this public property to not be greyed out during design time so that I can set up a property for the column?

Thanks,

Brandon
[359 byte] By [bjswift] at [2007-11-20 10:25:08]
# 1 Re: public property in designer is greyed out..
I figured it out, kind of...

Basically I was declaring my properties like this:
public property getValue()

instead of:
public property getValue() as string()

Anyhow, I am now able to set the property during design time, BUT it does not seem to actually set the value...

if I set it up in design time, and set it up in run time, it seems to work...
How can I tell if the properties I set in design time are actually getting to their respected member values?
bjswift at 2007-11-10 3:08:38 >